Searched refs:P_CHECKOPENEVT (Results 1 - 4 of 4) sorted by relevance

/darwin-on-arm/xnu/bsd/sys/
H A Dproc.h186 #define P_CHECKOPENEVT 0x00080000 /* check if a vnode has the OPENEVT flag set on open */ macro
/darwin-on-arm/xnu/bsd/vfs/
H A Dvfs_vnops.c593 // has the P_CHECKOPENEVT flag set, then we or in the O_EVTONLY
600 if (!did_create && (vp->v_flag & VOPENEVT) && (current_proc()->p_flag & P_CHECKOPENEVT)) {
H A Dvfs_syscalls.c8104 // has the P_CHECKOPENEVT flag set, then we or in the O_EVTONLY
8111 if ((vp->v_flag & VOPENEVT) && (current_proc()->p_flag & P_CHECKOPENEVT)) {
/darwin-on-arm/xnu/bsd/kern/
H A Dkern_sysctl.c2830 if (p->p_flag & P_CHECKOPENEVT) {
2841 OSBitOrAtomic(P_CHECKOPENEVT, &p->p_flag);
2845 OSBitAndAtomic(~((uint32_t)P_CHECKOPENEVT), &p->p_flag);

Completed in 43 milliseconds