Searched refs:pathbufp (Results 1 – 1 of 1) sorted by relevance
| /xnu-8020.121.3/bsd/kern/ |
| H A D | kern_descrip.c | 3696 char *pathbufp; in sys_fcntl_nocancel() local 3707 pathbufp = zalloc(ZV_NAMEI); in sys_fcntl_nocancel() 3711 error = vn_getpath_ext(vp, NULL, pathbufp, &pathlen, VN_GETPATH_NO_FIRMLINK); in sys_fcntl_nocancel() 3713 error = vn_getpath(vp, pathbufp, &pathlen); in sys_fcntl_nocancel() 3718 error = copyout((caddr_t)pathbufp, argp, pathlen); in sys_fcntl_nocancel() 3721 zfree(ZV_NAMEI, pathbufp); in sys_fcntl_nocancel() 3726 char *pathbufp; in sys_fcntl_nocancel() local 3737 pathbufp = zalloc(ZV_NAMEI); in sys_fcntl_nocancel() 3739 if ((error = copyinstr(argp, pathbufp, MAXPATHLEN, &pathlen)) == 0) { in sys_fcntl_nocancel() 3741 AUDIT_ARG(text, pathbufp); in sys_fcntl_nocancel() [all …]
|