Home
last modified time | relevance | path

Searched refs:p_textvp (Results 1 – 11 of 11) sorted by relevance

/dragonfly/sys/kern/
H A Dimgact_resident.c220 if ((vp = p->p_textvp) == NULL) in sys_exec_sys_register()
276 if ((id = uap->id) == -1 && p->p_textvp && p->p_textvp->v_resident) in sys_exec_sys_unregister()
277 id = p->p_textvp->v_resident->vr_id; in sys_exec_sys_unregister()
H A Dkern_checkpoint.c268 if (p->p_textvp) in ckpt_thaw_proc()
269 vrele(p->p_textvp); in ckpt_thaw_proc()
270 p->p_textvp = (struct vnode *)fp->f_data; in ckpt_thaw_proc()
271 vsetflags(p->p_textvp, VCKPT); in ckpt_thaw_proc()
272 vref(p->p_textvp); in ckpt_thaw_proc()
H A Dkern_shutdown.c595 if (p->p_textvp) { in shutdown_cleanup_proc()
596 vrele(p->p_textvp); in shutdown_cleanup_proc()
597 p->p_textvp = NULL; in shutdown_cleanup_proc()
H A Dkern_fork.c534 p2->p_textvp = p1->p_textvp; in fork1()
535 if (p2->p_textvp) in fork1()
536 vref(p2->p_textvp); in fork1()
H A Dkern_exit.c492 if ((vtmp = p->p_textvp) != NULL) { in exit1()
493 p->p_textvp = NULL; in exit1()
H A Dkern_exec.c542 ovp = p->p_textvp; in kern_execve()
544 p->p_textvp = imgp->vp; in kern_execve()
H A Dimgact_elf.c1101 if ((vp->v_flag & VCKPT) && curproc->p_textvp == vp) in cb_fpcount_segment()
1137 if ((vp->v_flag & VCKPT) && curproc->p_textvp == vp) in cb_put_fp()
H A Dvfs_cache.c5311 if ((vn = p->p_textvp) == NULL) in vn_fullpath()
/dragonfly/sys/vfs/procfs/
H A Dprocfs_mem.c228 return (p->p_textvp); in procfs_findtextvp()
/dragonfly/usr.bin/fstat/
H A Dfstat.c343 if (p->p_textvp) in dofiles()
344 vtrans(p->p_textvp, NULL, TEXT, FREAD, 0); in dofiles()
/dragonfly/sys/sys/
H A Dproc.h271 struct vnode *p_textvp; /* Vnode of executable. */ member