Searched refs:freepath (Results 1 - 13 of 13) sorted by relevance

/freebsd-13-stable/sys/fs/procfs/
H A Dprocfs.c73 char *freepath; local
77 freepath = NULL;
82 error = vn_fullpath(textvp, &fullpath, &freepath);
86 if (freepath != NULL)
87 free(freepath, M_TEMP);
H A Dprocfs_map.c86 char *fullpath, *freepath, *type; local
157 freepath = NULL;
194 vn_fullpath(vp, &fullpath, &freepath);
227 if (freepath != NULL)
228 free(freepath, M_TEMP);
/freebsd-13-stable/sys/sys/
H A Dimgact.h85 char *freepath; member in struct:image_params
/freebsd-13-stable/sys/dev/filemon/
H A Dfilemon_wrapper.c157 char *atpath, *freepath; local
162 freepath = NULL;
189 vn_fullpath(fp->f_vnode, &atpath, &freepath);
211 free(freepath, M_TEMP);
/freebsd-13-stable/sys/fs/fdescfs/
H A Dfdesc_vnops.c631 char *freepath, *fullpath; local
636 freepath = NULL;
652 error = vn_fullpath(vp, &fullpath, &freepath);
663 if (freepath != NULL)
664 free(freepath, M_TEMP);
/freebsd-13-stable/sys/dev/hwpmc/
H A Dhwpmc_mod.c830 pmc_getfilename(struct vnode *v, char **fullpath, char **freepath) argument
834 *freepath = NULL;
835 vn_fullpath(v, fullpath, freepath);
1101 char *fullpath, *freepath; local
1153 freepath = NULL;
1155 pmc_getfilename(p->p_textvp, &fullpath, &freepath);
1158 free(freepath, M_TEMP);
1757 char *fullpath, *freepath; local
1762 freepath = fullpath = NULL;
1764 pmc_getfilename((struct vnode *) pkm->pm_file, &fullpath, &freepath);
1877 char *fullpath, *freepath; local
2101 char *fullpath, *freepath; local
[all...]
/freebsd-13-stable/sys/compat/linprocfs/
H A Dlinprocfs.c1170 char *freepath = NULL; local
1173 vn_fullpath(pwd->pwd_cdir, &fullpath, &freepath);
1175 if (freepath)
1176 free(freepath, M_TEMP);
1190 char *freepath = NULL; local
1194 vn_fullpath(vp, &fullpath, &freepath);
1196 if (freepath)
1197 free(freepath, M_TEMP);
/freebsd-13-stable/sys/kern/
H A Dsys_process.c348 char *freepath, *fullpath; local
421 freepath = NULL;
423 vn_fullpath(vp, &fullpath, &freepath);
439 if (freepath != NULL)
440 free(freepath, M_TEMP);
H A Dkern_proc.c2301 char *fullpath, *freepath; local
2383 freepath = NULL;
2398 vn_fullpath(vp, &fullpath, &freepath);
2415 if (freepath != NULL)
2416 free(freepath, M_TEMP);
2512 char *fullpath, *freepath; local
2598 freepath = NULL;
2611 vn_fullpath(vp, &fullpath, &freepath);
2638 if (freepath != NULL)
2639 free(freepath, M_TEM
[all...]
H A Dkern_exec.c592 if (vn_fullpath(imgp->vp, &imgp->execpath, &imgp->freepath) != 0)
656 free(imgp->freepath, M_TEMP);
657 imgp->freepath = NULL;
916 free(imgp->freepath, M_TEMP);
H A Dkern_sig.c3804 char *fullpath, *freepath = NULL; local
3889 if (vn_fullpath_global(p->p_textvp, &fullpath, &freepath) != 0)
3893 free(freepath, M_TEMP);
3903 freepath = malloc(fullpathsize, M_TEMP, M_WAITOK);
3904 if (vn_getcwd(freepath, &fullpath, &fullpathsize) != 0) {
3905 free(freepath, M_TEMP);
3909 free(freepath, M_TEMP);
H A Dvfs_vnops.c2629 char *fullpath, *freepath; local
2633 freepath = NULL;
2635 error = vn_fullpath(vp, &fullpath, &freepath);
2639 if (freepath != NULL)
2640 free(freepath, M_TEMP);
/freebsd-13-stable/sys/vm/
H A Dvm_object.c2477 char *fullpath, *freepath; local
2546 freepath = NULL;
2562 vn_fullpath(vp, &fullpath, &freepath);
2574 if (freepath != NULL)
2575 free(freepath, M_TEMP);

Completed in 234 milliseconds