Searched refs:O_CREAT (Results 1 – 7 of 7) sorted by relevance
18 #define O_CREAT 00000100 // Create file if it does not exist macro
23 #define O_CREAT 00000100 // Create file if it does not exist
221   该函数的应当被`sys_open()`系统调用在使用了`O_CREAT`选项打开文件时调用,从而创建一个新的文件。请注意,传递给create()函数的`dest_dEntry…
356 int fd = open(file_path, O_CREAT); in shell_cmd_touch()
479 int ret = do_open(path, O_CREAT, false); in proc_create_file()
408 if (dentry == NULL && flags & O_CREAT) in do_open()