Searched refs:pathbufp (Results 1 – 1 of 1) sorted by relevance
| /xnu-12377.1.9/bsd/kern/ |
| H A D | kern_descrip.c | 3807 char *pathbufp; in sys_fcntl_nocancel() local 3818 pathbufp = zalloc(ZV_NAMEI); in sys_fcntl_nocancel() 3821 error = vn_getpath_ext(vp, NULL, pathbufp, in sys_fcntl_nocancel() 3827 error = copyout((caddr_t)pathbufp, argp, pathlen); in sys_fcntl_nocancel() 3830 zfree(ZV_NAMEI, pathbufp); in sys_fcntl_nocancel() 3835 char *pathbufp; in sys_fcntl_nocancel() local 3846 pathbufp = zalloc(ZV_NAMEI); in sys_fcntl_nocancel() 3848 if ((error = copyinstr(argp, pathbufp, MAXPATHLEN, &pathlen)) == 0) { in sys_fcntl_nocancel() 3850 AUDIT_ARG(text, pathbufp); in sys_fcntl_nocancel() 3851 error = vn_path_package_check(vp, pathbufp, (int)pathlen, retval); in sys_fcntl_nocancel() [all …]
|