Home
last modified time | relevance | path

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

/DragonOS-0.1.5/user/libs/libc/src/
Dstdio.c74 o_flags = O_RDWR | O_CREAT; in fopen()
76 o_flags = O_APPEND | O_CREAT; in fopen()
78 o_flags = O_APPEND | O_CREAT; in fopen()
/DragonOS-0.1.5/kernel/src/common/
Dfcntl.h18 #define O_CREAT 00000100 // Create file if it does not exist macro
/DragonOS-0.1.5/user/libs/libc/src/include/export/
Dfcntl.h22 #define O_CREAT 00000100 // Create file if it does not exist macro
/DragonOS-0.1.5/docs/userland/libc/apis/api-list/
Dfcntl.md23 #define O_CREAT 00000100 // Create file if it does not exist
/DragonOS-0.1.5/kernel/src/filesystem/vfs/
Dfile.rs51 const O_CREAT = 0o00000100; constant
Dcore.rs198 if mode.contains(FileMode::O_CREAT) in do_open()
/DragonOS-0.1.5/user/apps/shell/
Dcmd.c357 int fd = open(file_path, O_CREAT); in shell_cmd_touch()