Home
last modified time | relevance | path

Searched refs:O_WRONLY (Results 1 – 4 of 4) sorted by relevance

/DragonOS-0.1.3/docs/userland/libc/apis/api-list/
Dfcntl.md16 #define O_WRONLY 00000001 // Open Write-only
29 #define O_TRUNC 00001000 // 文件存在且是普通文件,并以O_RDWR或O_WRONLY打开,则它会被清空
/DragonOS-0.1.3/kernel/src/common/
Dfcntl.h14 #define O_WRONLY 00000001 // Open Write-only macro
/DragonOS-0.1.3/user/libs/libc/src/include/
Dfcntl.h18 #define O_WRONLY 00000001 // Open Write-only macro
/DragonOS-0.1.3/user/libs/libc/src/
Dstdio.c72 o_flags = O_WRONLY; in fopen()