Home
last modified time | relevance | path

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

/xnu-11215/tests/
H A Dkqueue_fifo_18776047.c129 read_fd = open(fpath, O_RDONLY | O_APPEND | O_NONBLOCK);
132 write_fd = open(fpath, O_WRONLY | O_APPEND | O_NONBLOCK);
/xnu-11215/bsd/sys/
H A Dfcntl.h116 #define O_APPEND 0x00000008 /* set append mode */ macro
252 #define FAPPEND O_APPEND /* kernel/compat */
/xnu-11215/SETUP/replacecontents/
H A Dreplacecontents.c80 dstfd = open(dst, O_RDWR | O_CREAT | O_APPEND, DEFFILEMODE); in main()
/xnu-11215/bsd/security/audit/
H A Daudit_private.h390 #define AUDIT_OPEN_FLAGS (FWRITE | O_APPEND)
391 #define AUDIT_CLOSE_FLAGS (FWRITE | O_APPEND)
/xnu-11215/bsd/dev/dtrace/scripts/
H A Dio.d153 inline int O_APPEND = 0x0008; variable
154 #pragma D binding "1.1" O_APPEND
/xnu-11215/bsd/kern/
H A Dkern_aio.c2005 if ((fp->fp_glob->fg_flag & O_APPEND) == 0) { in do_aio_write()
/xnu-11215/bsd/vfs/
H A Dvfs_vnops.c1266 if (vp->v_type == VREG && (fp->fp_glob->fg_flag & O_APPEND)) { in vn_write()
H A Dvfs_subr.c8354 if ((fmode & O_APPEND) && !(fmode & O_TRUNC)) { in vn_authorize_open_existing()