Searched refs:pathbufp (Results 1 – 1 of 1) sorted by relevance
| /xnu-8796.141.3/bsd/kern/ |
| H A D | kern_descrip.c | 3694 char *pathbufp; in sys_fcntl_nocancel() local 3705 pathbufp = zalloc(ZV_NAMEI); in sys_fcntl_nocancel() 3708 error = vn_getpath_ext(vp, NULL, pathbufp, in sys_fcntl_nocancel() 3714 error = copyout((caddr_t)pathbufp, argp, pathlen); in sys_fcntl_nocancel() 3717 zfree(ZV_NAMEI, pathbufp); in sys_fcntl_nocancel() 3722 char *pathbufp; in sys_fcntl_nocancel() local 3733 pathbufp = zalloc(ZV_NAMEI); in sys_fcntl_nocancel() 3735 if ((error = copyinstr(argp, pathbufp, MAXPATHLEN, &pathlen)) == 0) { in sys_fcntl_nocancel() 3737 AUDIT_ARG(text, pathbufp); in sys_fcntl_nocancel() 3738 error = vn_path_package_check(vp, pathbufp, (int)pathlen, retval); in sys_fcntl_nocancel() [all …]
|