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.h42 #ifndef O_APPEND
44 #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)
Dfmemopen.c164 if (oflags & O_APPEND) { in fmemopen()
/bionic/libc/stdio/
Dstdio.cpp221 if (oflags & O_APPEND) __sseek64(fp, 0, SEEK_END); in fopen()
245 if ((oflags & O_APPEND) && !(fdflags & O_APPEND)) flags |= __SAPP; in fdopen()
359 if (oflags & O_APPEND) __sseek64(fp, 0, SEEK_END); in freopen()
/bionic/libc/bionic/
Dlibc_logging.cpp435 int fd = TEMP_FAILURE_RETRY(open("/dev/stderr", O_CLOEXEC | O_WRONLY | O_APPEND)); in __libc_write_stderr()