Home
last modified time | relevance | path

Searched refs:O_CREAT (Results 1 – 7 of 7) sorted by relevance

/DragonOS-0.1.8/user/libs/libc/src/
Dstdio.c81 o_flags = O_RDWR | O_CREAT; in fopen()
83 o_flags = O_APPEND | O_CREAT; in fopen()
85 o_flags = O_APPEND | O_CREAT; in fopen()
/DragonOS-0.1.8/kernel/src/common/
Dfcntl.h18 #define O_CREAT 00000100 // Create file if it does not exist macro
/DragonOS-0.1.8/user/libs/libc/src/include/export/
Dfcntl.h22 #define O_CREAT 00000100 // Create file if it does not exist macro
/DragonOS-0.1.8/docs/userland/libc/apis/api-list/
Dfcntl.md23 #define O_CREAT 00000100 // Create file if it does not exist
/DragonOS-0.1.8/kernel/src/filesystem/vfs/
Dfile.rs49 const O_CREAT = 0o00000100; constant
Dsyscall.rs141 if mode.contains(FileMode::O_CREAT) in open()
/DragonOS-0.1.8/user/apps/shell/
Dcmd.c378 int fd = open(file_path, O_CREAT); in shell_cmd_touch()