Lines Matching refs:P
48 Pscantext(struct ps_prochandle *P) in Pscantext() argument
68 if (P->sysaddr != 0 && in Pscantext()
69 (syspri = Pissyscall(P, P->sysaddr))) in Pscantext()
70 sysaddr = P->sysaddr; in Pscantext()
74 syspri = Pissyscall_prev(P, P->status.pr_lwp.pr_reg[R_PC], in Pscantext()
78 P->sysaddr = sysaddr; in Pscantext()
84 procfs_path, (int)P->pid); in Pscantext()
134 (endoff > P->status.pr_stkbase && in Pscantext()
135 offset < P->status.pr_stkbase + P->status.pr_stksize) || in Pscantext()
136 (endoff > P->status.pr_brkbase && in Pscantext()
137 offset < P->status.pr_brkbase + P->status.pr_brksize)) in Pscantext()
140 (void) lseek(P->asfd, (off_t)offset, 0); in Pscantext()
142 if ((nbytes = read(P->asfd, buf, 2*BLKSIZE)) <= 0) in Pscantext()
166 n2bytes = read(P->asfd, in Pscantext()
171 if (syspri = Pissyscall_text(P, p, nbytes)) in Pscantext()
182 if ((P->sysaddr = sysaddr) != 0) in Pscantext()