Searched refs:O_EXLOCK (Results 1 - 5 of 5) sorted by relevance

/darwin-on-arm/xnu/bsd/sys/
H A Dfcntl.h137 #define O_EXLOCK 0x0020 /* open with exclusive file lock */ macro
/darwin-on-arm/xnu/bsd/vfs/
H A Dvfs_xattr.c1706 fileflags = FREAD | FWRITE | O_EXLOCK;
2040 fileflags |= O_EXLOCK;
2201 if (fileflags & O_EXLOCK)
2544 if ( (error = VNOP_OPEN(xvp, fileflags & ~(O_EXLOCK | O_SHLOCK), context))) {
2578 if (fileflags & (O_EXLOCK | O_SHLOCK)) {
2581 locktype = (fileflags & O_EXLOCK) ? F_WRLCK : F_RDLCK;
2621 if (fileflags & (O_EXLOCK | O_SHLOCK))
H A Dvfs_syscalls.c3058 if (flags & (O_EXLOCK | O_SHLOCK)) {
3062 if (flags & O_EXLOCK)
/darwin-on-arm/xnu/bsd/nfs/
H A Dnfs_syscalls.c614 if (fmode & (O_EXLOCK | O_SHLOCK)) {
618 if (fmode & O_EXLOCK)
H A Dnfs_vnops.c739 /* mode contains some combination of: FREAD, FWRITE, O_SHLOCK, O_EXLOCK */
745 if (ap->a_mode & O_EXLOCK)
987 // XXX It would be nice if we still had the O_EXLOCK/O_SHLOCK flags that were on the open
988 // if (fflag & O_EXLOCK)

Completed in 908 milliseconds