Home
last modified time | relevance | path

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

/DragonOS/kernel/src/common/
H A Dfcntl.h18 #define O_CREAT 00000100 // Create file if it does not exist macro
/DragonOS/user/apps/test_filemap/
H A Dmain.c12 int fd = open("example.txt", O_RDWR | O_CREAT | O_TRUNC, 0777); in main()
/DragonOS/kernel/src/filesystem/vfs/
H A Dopen.rs101 if how.o_flags.contains(FileMode::O_CREAT) in do_sys_openat2()
H A Dfile.rs83 const O_CREAT = 0o00000100; constant
H A Dsyscall.rs410 if !o_flags.contains(FileMode::O_CREAT) { in new()