Home
last modified time | relevance | path

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

/DragonOS-0.1.3/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.3/kernel/src/common/
Dfcntl.h18 #define O_CREAT 00000100 // Create file if it does not exist macro
/DragonOS-0.1.3/user/libs/libc/src/include/
Dfcntl.h22 #define O_CREAT 00000100 // Create file if it does not exist macro
/DragonOS-0.1.3/docs/userland/libc/apis/api-list/
Dfcntl.md23 #define O_CREAT 00000100 // Create file if it does not exist
/DragonOS-0.1.3/docs/kernel/filesystem/vfs/
Doverview.md221   该函数的应当被`sys_open()`系统调用在使用了`O_CREAT`选项打开文件时调用,从而创建一个新的文件。请注意,传递给create()函数的`dest_dEntry…
/DragonOS-0.1.3/user/apps/shell/
Dcmd.c356 int fd = open(file_path, O_CREAT); in shell_cmd_touch()
/DragonOS-0.1.3/kernel/src/filesystem/procfs/
Dprocfs.c479 int ret = do_open(path, O_CREAT, false); in proc_create_file()
/DragonOS-0.1.3/kernel/src/filesystem/vfs/
DVFS.c408 if (dentry == NULL && flags & O_CREAT) in do_open()