Home
last modified time | relevance | path

Searched refs:p_textnch (Results 1 – 8 of 8) sorted by relevance

/dragonfly/sys/vfs/procfs/
HDprocfs_vnops.c645 if (procp->p_textnch.ncp) { in procfs_getattr()
648 cache_copy(&procp->p_textnch, &nch); in procfs_getattr()
1146 if (procp->p_textnch.ncp) { in procfs_readlink()
1149 cache_copy(&procp->p_textnch, &nch); in procfs_readlink()
/dragonfly/sys/kern/
HDkern_shutdown.c599 if (p->p_textnch.ncp) in shutdown_cleanup_proc()
600 cache_drop(&p->p_textnch); in shutdown_cleanup_proc()
HDkern_exec.c549 if (p->p_textnch.ncp) in kern_execve()
550 cache_drop(&p->p_textnch); in kern_execve()
552 cache_copy(nch, &p->p_textnch); in kern_execve()
HDkern_fork.c539 if (p1->p_textnch.mount) in fork1()
540 cache_copy(&p1->p_textnch, &p2->p_textnch); in fork1()
HDkern_exit.c498 if (p->p_textnch.ncp) in exit1()
499 cache_drop(&p->p_textnch); in exit1()
HDkern_proc.c2102 if (p->p_textnch.ncp) { in sysctl_kern_proc_pathname()
2103 cache_copy(&p->p_textnch, &nch); in sysctl_kern_proc_pathname()
HDvfs_syscalls.c769 if (p->p_textnch.mount == mp) in unmount_allproc_cb()
770 cache_drop(&p->p_textnch); in unmount_allproc_cb()
/dragonfly/sys/sys/
HDproc.h272 struct nchandle p_textnch; /* namecache handle of executable. */ member