Home
last modified time | relevance | path

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

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