Lines Matching refs:options

7259 		/* Believe it or not, uap->options only has 32-bits of valid
7263 (u_long)(uint32_t)uap->options, &newstate, &eofflag,
7311 if ((uap->options & FSOPT_NOFOLLOW) == 0) nameiflags |= FOLLOW;
7587 if ((uap->options & FSOPT_NOFOLLOW) == 0) nameiflags |= FOLLOW;
7633 (u_long)uap->options,
8352 fsctl_internal(proc_t p, vnode_t *arg_vp, u_long cmd, user_addr_t udata, u_long options, vfs_context_t ctx)
8665 error = VNOP_IOCTL(vp, IOCBASECMD(cmd), data, options, ctx);
8693 AUDIT_ARG(value32, uap->options);
8696 if ((uap->options & FSOPT_NOFOLLOW) == 0) nameiflags |= FOLLOW;
8710 error = fsctl_internal(p, &vp, uap->cmd, (user_addr_t)uap->data, uap->options, ctx);
8728 AUDIT_ARG(value32, uap->options);
8745 error = fsctl_internal(p, &vp, uap->cmd, (user_addr_t)uap->data, uap->options, ctx);
8795 if (uap->options & (XATTR_NOSECURITY | XATTR_NODEFAULT))
8798 nameiflags = (uap->options & XATTR_NOFOLLOW) ? 0 : FOLLOW;
8848 error = vn_getxattr(vp, attrname, auio, &attrsize, uap->options, ctx);
8876 if (uap->options & (XATTR_NOFOLLOW | XATTR_NOSECURITY | XATTR_NODEFAULT))
8899 error = vn_getxattr(vp, attrname, auio, &attrsize, uap->options, vfs_context_current());
8929 if (uap->options & (XATTR_NOSECURITY | XATTR_NODEFAULT))
8946 nameiflags = (uap->options & XATTR_NOFOLLOW) ? 0 : FOLLOW;
8958 error = vn_setxattr(vp, attrname, auio, uap->options, ctx);
8988 if (uap->options & (XATTR_NOFOLLOW | XATTR_NOSECURITY | XATTR_NODEFAULT))
9010 error = vn_setxattr(vp, attrname, auio, uap->options, vfs_context_current());
9040 if (uap->options & (XATTR_NOSECURITY | XATTR_NODEFAULT))
9049 nameiflags = (uap->options & XATTR_NOFOLLOW) ? 0 : FOLLOW;
9057 error = vn_removexattr(vp, attrname, uap->options, ctx);
9085 if (uap->options & (XATTR_NOFOLLOW | XATTR_NOSECURITY | XATTR_NODEFAULT))
9102 error = vn_removexattr(vp, attrname, uap->options, vfs_context_current());
9133 if (uap->options & (XATTR_NOSECURITY | XATTR_NODEFAULT))
9136 nameiflags = ((uap->options & XATTR_NOFOLLOW) ? 0 : FOLLOW) | NOTRIGGER;
9149 error = vn_listxattr(vp, auio, &attrsize, uap->options, ctx);
9174 if (uap->options & (XATTR_NOFOLLOW | XATTR_NOSECURITY | XATTR_NODEFAULT))
9190 error = vn_listxattr(vp, auio, &attrsize, uap->options, vfs_context_current());