Home
last modified time | relevance | path

Searched refs:pidp (Results 1 – 5 of 5) sorted by relevance

/f-stack/freebsd/sys/
H A Dprocdesc.h100 int kern_pdgetpid(struct thread *, int fd, cap_rights_t *, pid_t *pidp);
H A Dsysproto.h1549 char pidp_l_[PADL_(pid_t *)]; pid_t * pidp; char pidp_r_[PADR_(pid_t *)]; member
/f-stack/freebsd/kern/
H A Dsys_procdesc.c171 kern_pdgetpid(struct thread *td, int fd, cap_rights_t *rightsp, pid_t *pidp) in kern_pdgetpid() argument
183 *pidp = procdesc_pid(fp); in kern_pdgetpid()
201 error = copyout(&pid, uap->pidp, sizeof(pid)); in sys_pdgetpid()
H A Dkern_proc.c2231 pid_t *pidp = (pid_t *)arg1; in sysctl_kern_proc_pathname() local
2240 if (*pidp == -1) { /* -1 means this process */ in sysctl_kern_proc_pathname()
2243 error = pget(*pidp, PGET_CANSEE, &p); in sysctl_kern_proc_pathname()
2250 if (*pidp != -1) in sysctl_kern_proc_pathname()
2255 if (*pidp != -1) in sysctl_kern_proc_pathname()
2781 pid_t *pidp = (pid_t *)arg1; in sysctl_kern_proc_groups() local
2789 if (*pidp == -1) { /* -1 means this process */ in sysctl_kern_proc_groups()
2793 error = pget(*pidp, PGET_CANSEE, &p); in sysctl_kern_proc_groups()
H A Dsystrace_args.c2875 uarg[1] = (intptr_t) p->pidp; /* pid_t * */ in systrace_args()