Lines Matching defs:flags

261 VFS_START(mount_t mp, int flags, vfs_context_t ctx)
279 error = (*mp->mnt_op->vfs_start)(mp, flags, ctx);
291 VFS_UNMOUNT(mount_t mp, int flags, vfs_context_t ctx)
309 error = (*mp->mnt_op->vfs_unmount)(mp, flags, ctx);
470 VFS_SYNC(mount_t mp, int flags, vfs_context_t ctx)
492 error = (*mp->mnt_op->vfs_sync)(mp, flags, ctx);
634 /* returns command modifier flags of mount_t ie. MNT_CMDFLAGS */
641 /* set any of the command modifier flags(MNT_CMDFLAGS) in mount_t */
643 vfs_setflags(mount_t mp, uint64_t flags)
645 uint32_t lflags = (uint32_t)(flags & (MNT_CMDFLAGS | MNT_VISFLAGMASK));
652 /* clear any of the command modifier flags(MNT_CMDFLAGS) in mount_t */
654 vfs_clearflags(mount_t mp , uint64_t flags)
656 uint32_t lflags = (uint32_t)(flags & (MNT_CMDFLAGS | MNT_VISFLAGMASK));
2101 /* return the visible flags on associated mount point of vnode_t */
2108 /* return the command modifier flags on associated mount point of vnode_t */
2649 * mounted with ingore ownership flags, or by the underlyng
2934 vfs_settriggercallback(fsid_t *fsid, vfs_trigger_callback_t vtc, void *data, uint32_t flags __unused, vfs_context_t ctx)
3082 VNOP_COMPOUND_OPEN(vnode_t dvp, vnode_t *vpp, struct nameidata *ndp, int32_t flags, int32_t fmode, uint32_t *statusp, struct vnode_attr *vap, vfs_context_t ctx)
3091 want_create = (flags & VNOP_COMPOUND_OPEN_DO_CREATE);
3097 a.a_flags = flags;
3220 VNOP_WHITEOUT(vnode_t dvp, struct componentname * cnp, int flags, vfs_context_t ctx)
3232 a.a_flags = flags;
4000 VNOP_REVOKE(vnode_t vp, int flags, vfs_context_t ctx)
4011 a.a_flags = flags;
4195 VNOP_REMOVE(vnode_t dvp, vnode_t vp, struct componentname * cnp, int flags, vfs_context_t ctx)
4208 a.a_flags = flags;
4246 VNOP_COMPOUND_REMOVE(vnode_t dvp, vnode_t *vpp, struct nameidata *ndp, int32_t flags, struct vnode_attr *vap, vfs_context_t ctx)
4256 a.a_flags = flags;
4364 uint32_t flags, vfs_context_t ctx)
4464 _err = VNOP_COMPOUND_RENAME(fdvp, fvpp, fcnp, fvap, tdvp, tvpp, tcnp, tvap, flags, ctx);
4761 uint32_t flags, vfs_context_t ctx)
4783 a.a_flags = flags;
5328 VNOP_READDIR(struct vnode *vp, struct uio *uio, int flags, int *eofflag,
5341 a.a_flags = flags;
5686 VNOP_ADVLOCK(struct vnode *vp, caddr_t id, int op, struct flock *fl, int flags, vfs_context_t ctx)
5700 a.a_flags = flags;
5752 VNOP_ALLOCATE(struct vnode *vp, off_t length, u_int32_t flags, off_t *bytesallocated, off_t offset, vfs_context_t ctx)
5764 a.a_flags = flags;
5812 VNOP_PAGEIN(struct vnode *vp, upl_t pl, upl_offset_t pl_offset, off_t f_offset, size_t size, int flags, vfs_context_t ctx)
5827 a.a_flags = flags;
5867 VNOP_PAGEOUT(struct vnode *vp, upl_t pl, upl_offset_t pl_offset, off_t f_offset, size_t size, int flags, vfs_context_t ctx)
5882 a.a_flags = flags;
5906 vn_remove(vnode_t dvp, vnode_t *vpp, struct nameidata *ndp, int32_t flags, struct vnode_attr *vap, vfs_context_t ctx)
5909 return VNOP_COMPOUND_REMOVE(dvp, vpp, ndp, flags, vap, ctx);
5911 return VNOP_REMOVE(dvp, *vpp, &ndp->ni_cnd, flags, ctx);
6008 int mode, int flags, vfs_context_t ctx)
6018 a.a_flags = flags;
6291 VNOP_BLOCKMAP(struct vnode *vp, off_t foffset, size_t size, daddr64_t *bpn, size_t *run, void *poff, int flags, vfs_context_t ctx)
6311 a.a_flags = flags;
6470 VNOP_MONITOR(vnode_t vp, uint32_t events, uint32_t flags, void *handle, vfs_context_t ctx)
6482 a.a_flags = flags;
6555 VNOP_GETNAMEDSTREAM(vnode_t vp, vnode_t *svpp, const char *name, enum nsoperation operation, int flags, vfs_context_t ctx)
6569 a.a_flags = flags;
6579 VNOP_MAKENAMEDSTREAM(vnode_t vp, vnode_t *svpp, const char *name, int flags, vfs_context_t ctx)
6592 a.a_flags = flags;
6603 VNOP_REMOVENAMEDSTREAM(vnode_t vp, vnode_t svp, const char *name, int flags, vfs_context_t ctx)
6616 a.a_flags = flags;