Searched refs:pathbufp (Results 1 – 1 of 1) sorted by relevance
| /xnu-8019.80.24/bsd/kern/ |
| H A D | kern_descrip.c | 3688 char *pathbufp; in sys_fcntl_nocancel() local 3699 pathbufp = zalloc(ZV_NAMEI); in sys_fcntl_nocancel() 3703 error = vn_getpath_ext(vp, NULL, pathbufp, &pathlen, VN_GETPATH_NO_FIRMLINK); in sys_fcntl_nocancel() 3705 error = vn_getpath(vp, pathbufp, &pathlen); in sys_fcntl_nocancel() 3710 error = copyout((caddr_t)pathbufp, argp, pathlen); in sys_fcntl_nocancel() 3713 zfree(ZV_NAMEI, pathbufp); in sys_fcntl_nocancel() 3718 char *pathbufp; in sys_fcntl_nocancel() local 3729 pathbufp = zalloc(ZV_NAMEI); in sys_fcntl_nocancel() 3731 if ((error = copyinstr(argp, pathbufp, MAXPATHLEN, &pathlen)) == 0) { in sys_fcntl_nocancel() 3733 AUDIT_ARG(text, pathbufp); in sys_fcntl_nocancel() [all …]
|