Lines Matching defs:uap

351 sys___acl_get_file(struct thread *td, struct __acl_get_file_args *uap)
354 return (kern___acl_get_path(td, uap->path, uap->type, uap->aclp,
362 sys___acl_get_link(struct thread *td, struct __acl_get_link_args *uap)
365 return(kern___acl_get_path(td, uap->path, uap->type, uap->aclp,
390 sys___acl_set_file(struct thread *td, struct __acl_set_file_args *uap)
393 return(kern___acl_set_path(td, uap->path, uap->type, uap->aclp,
401 sys___acl_set_link(struct thread *td, struct __acl_set_link_args *uap)
404 return(kern___acl_set_path(td, uap->path, uap->type, uap->aclp,
429 sys___acl_get_fd(struct thread *td, struct __acl_get_fd_args *uap)
435 AUDIT_ARG_FD(uap->filedes);
436 error = getvnode_path(td, uap->filedes,
439 error = vacl_get_acl(td, fp->f_vnode, uap->type, uap->aclp);
449 sys___acl_set_fd(struct thread *td, struct __acl_set_fd_args *uap)
455 AUDIT_ARG_FD(uap->filedes);
456 error = getvnode(td, uap->filedes,
459 error = vacl_set_acl(td, fp->f_vnode, uap->type, uap->aclp);
469 sys___acl_delete_file(struct thread *td, struct __acl_delete_file_args *uap)
472 return (kern___acl_delete_path(td, uap->path, uap->type, FOLLOW));
479 sys___acl_delete_link(struct thread *td, struct __acl_delete_link_args *uap)
482 return (kern___acl_delete_path(td, uap->path, uap->type, NOFOLLOW));
506 sys___acl_delete_fd(struct thread *td, struct __acl_delete_fd_args *uap)
512 AUDIT_ARG_FD(uap->filedes);
513 error = getvnode(td, uap->filedes,
516 error = vacl_delete(td, fp->f_vnode, uap->type);
526 sys___acl_aclcheck_file(struct thread *td, struct __acl_aclcheck_file_args *uap)
529 return (kern___acl_aclcheck_path(td, uap->path, uap->type, uap->aclp,
537 sys___acl_aclcheck_link(struct thread *td, struct __acl_aclcheck_link_args *uap)
539 return (kern___acl_aclcheck_path(td, uap->path, uap->type, uap->aclp,
563 sys___acl_aclcheck_fd(struct thread *td, struct __acl_aclcheck_fd_args *uap)
569 AUDIT_ARG_FD(uap->filedes);
570 error = getvnode_path(td, uap->filedes,
573 error = vacl_aclcheck(td, fp->f_vnode, uap->type, uap->aclp);