Searched refs:pathbufp (Results 1 – 1 of 1) sorted by relevance
| /xnu-12377.81.4/bsd/kern/ |
| H A D | kern_descrip.c | 3796 char *pathbufp; in sys_fcntl_nocancel() local 3807 pathbufp = zalloc(ZV_NAMEI); in sys_fcntl_nocancel() 3810 error = vn_getpath_ext(vp, NULL, pathbufp, in sys_fcntl_nocancel() 3816 error = copyout((caddr_t)pathbufp, argp, pathlen); in sys_fcntl_nocancel() 3819 zfree(ZV_NAMEI, pathbufp); in sys_fcntl_nocancel() 3824 char *pathbufp; in sys_fcntl_nocancel() local 3835 pathbufp = zalloc(ZV_NAMEI); in sys_fcntl_nocancel() 3837 if ((error = copyinstr(argp, pathbufp, MAXPATHLEN, &pathlen)) == 0) { in sys_fcntl_nocancel() 3839 AUDIT_ARG(text, pathbufp); in sys_fcntl_nocancel() 3840 error = vn_path_package_check(vp, pathbufp, (int)pathlen, retval); in sys_fcntl_nocancel() [all …]
|