Home
last modified time | relevance | path

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

/bionic/libc/kernel/uapi/asm-generic/
Dfcntl.h38 #ifndef O_APPEND
39 #define O_APPEND 00002000 macro
/bionic/libc/kernel/uapi/asm-mips/asm/
Dfcntl.h22 #define O_APPEND 0x0008 macro
/bionic/libc/upstream-openbsd/lib/libc/stdio/
Dflags.c67 o = O_CREAT | O_APPEND; in __sflags()
Dmktemp.c38 #define MKOTEMP_FLAGS (O_APPEND | O_CLOEXEC | O_DSYNC | O_RSYNC | O_SYNC)
/bionic/tests/headers/posix/
Dfcntl_h.c67 MACRO(O_APPEND); in fcntl_h()
/bionic/libc/stdio/
Dstdio.cpp271 if ((mode_flags & O_APPEND) != 0) __sseek64(fp, 0, SEEK_END); in fopen()
292 if ((mode_flags & O_APPEND) && !(fd_flags & O_APPEND)) { in fdopen()
293 if (fcntl(fd, F_SETFL, fd_flags | O_APPEND) == -1) return nullptr; in fdopen()
405 if ((mode_flags & O_APPEND) != 0) __sseek64(fp, 0, SEEK_END); in freopen()
/bionic/docs/
Dfdsan.md20 int fd = open("log", O_WRONLY | O_APPEND);