Home
last modified time | relevance | path

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

/DragonOS-0.1.8/kernel/src/common/
Dfcntl.h22 #define O_TRUNC 00001000 // 文件存在且是普通文件,并以O_RDWR或O_WRONLY打开,则它会被清空 macro
/DragonOS-0.1.8/user/libs/libc/src/include/export/
Dfcntl.h26 #define O_TRUNC 00001000 // 文件存在且是普通文件,并以O_RDWR或O_WRONLY打开,则它会被清空 macro
/DragonOS-0.1.8/docs/userland/libc/apis/api-list/
Dfcntl.md29 #define O_TRUNC 00001000 // 文件存在且是普通文件,并以O_RDWR或O_WRONLY打开,则它会被清空
/DragonOS-0.1.8/kernel/src/filesystem/vfs/
Dfile.rs55 const O_TRUNC = 0o00001000; constant
Dsyscall.rs168 if mode.contains(FileMode::O_TRUNC) in open()