Searched refs:O_APPEND (Results 1 - 6 of 6) sorted by relevance

/macosx-10.5.8/xnu-1228.15.4/bsd/sys/
H A Dfcntl.h128 #define O_APPEND 0x0008 /* set append mode */ macro
184 #define FAPPEND O_APPEND /* kernel/compat */
/macosx-10.5.8/xnu-1228.15.4/bsd/vfs/
H A Dvfs_vnops.c382 if ((fmode & O_APPEND) && !(fmode & O_TRUNC)) {
772 if (vp->v_type == VREG && (fp->f_fglob->fg_flag & O_APPEND))
/macosx-10.5.8/xnu-1228.15.4/bsd/kern/
H A Dkern_audit.c198 static const int audit_open_flags = FWRITE | O_APPEND;
199 static const int audit_close_flags = FWRITE | O_APPEND;
/macosx-10.5.8/xnu-1228.15.4/bsd/ufs/ufs/
H A Dufs_vnops.c210 (ap->a_mode & (FWRITE | O_APPEND)) == FWRITE)
/macosx-10.5.8/xnu-1228.15.4/bsd/hfs/
H A Dhfs_vnops.c228 (ap->a_mode & (FWRITE | O_APPEND)) == FWRITE)
/macosx-10.5.8/xnu-1228.15.4/tools/tests/xnu_quick_test/
H A Dtests.c530 /* test O_TRUNC and O_APPEND case */
531 my_fd = open( my_pathp, (O_RDWR | O_TRUNC | O_APPEND), 0 );

Completed in 111 milliseconds