Searched refs:pathbufp (Results 1 – 1 of 1) sorted by relevance
| /xnu-8792.61.2/bsd/kern/ |
| H A D | kern_descrip.c | 3710 char *pathbufp; in sys_fcntl_nocancel() local 3721 pathbufp = zalloc(ZV_NAMEI); in sys_fcntl_nocancel() 3724 error = vn_getpath_ext(vp, NULL, pathbufp, in sys_fcntl_nocancel() 3730 error = copyout((caddr_t)pathbufp, argp, pathlen); in sys_fcntl_nocancel() 3733 zfree(ZV_NAMEI, pathbufp); in sys_fcntl_nocancel() 3738 char *pathbufp; in sys_fcntl_nocancel() local 3749 pathbufp = zalloc(ZV_NAMEI); in sys_fcntl_nocancel() 3751 if ((error = copyinstr(argp, pathbufp, MAXPATHLEN, &pathlen)) == 0) { in sys_fcntl_nocancel() 3753 AUDIT_ARG(text, pathbufp); in sys_fcntl_nocancel() 3754 error = vn_path_package_check(vp, pathbufp, (int)pathlen, retval); in sys_fcntl_nocancel() [all …]
|