Searched refs:MNT_CMDFLAGS (Results 1 - 3 of 3) sorted by relevance

/xnu-2782.1.97/bsd/sys/
H A Dmount.h328 * XXX I think that this could now become (~(MNT_CMDFLAGS))
349 #define MNT_CMDFLAGS (MNT_UPDATE|MNT_NOBLOCK|MNT_RELOAD|MNT_FORCE) macro
787 @discussion Results will be in the bitwise "OR" of MNT_VISFLAGMASK and MNT_CMDFLAGS.
799 @param flags Flags to activate. Must be in the bitwise "OR" of MNT_VISFLAGMASK and MNT_CMDFLAGS.
809 @param flags Flags to deactivate. Must be in the bitwise "OR" of MNT_VISFLAGMASK and MNT_CMDFLAGS.
/xnu-2782.1.97/bsd/vfs/
H A Dkpi_vfs.c401 /* returns command modifier flags of mount_t ie. MNT_CMDFLAGS */
405 return((uint64_t)(mp->mnt_flag & (MNT_CMDFLAGS | MNT_VISFLAGMASK)));
408 /* set any of the command modifier flags(MNT_CMDFLAGS) in mount_t */
412 uint32_t lflags = (uint32_t)(flags & (MNT_CMDFLAGS | MNT_VISFLAGMASK));
419 /* clear any of the command modifier flags(MNT_CMDFLAGS) in mount_t */
423 uint32_t lflags = (uint32_t)(flags & (MNT_CMDFLAGS | MNT_VISFLAGMASK));
1872 return(vp->v_mount->mnt_flag & MNT_CMDFLAGS);
/xnu-2782.1.97/bsd/hfs/
H A Dhfs_vfsops.c241 cmdflags = (u_int32_t)vfs_flags(mp) & MNT_CMDFLAGS;

Completed in 86 milliseconds