Lines Matching refs:ph

72 ps_xfer_memory (const struct ps_prochandle *ph, paddr_t addr,
78 inferior_ptid = pid_to_ptid (ph->pid);
95 ps_pstop (gdb_ps_prochandle_t ph)
104 ps_pcontinue (gdb_ps_prochandle_t ph)
114 ps_lstop (gdb_ps_prochandle_t ph, lwpid_t lwpid)
124 ps_lcontinue (gdb_ps_prochandle_t ph, lwpid_t lwpid)
136 ps_lgetxregsize (gdb_ps_prochandle_t ph, lwpid_t lwpid, int *xregsize)
146 ps_lgetxregs (gdb_ps_prochandle_t ph, lwpid_t lwpid, caddr_t xregset)
156 ps_lsetxregs (gdb_ps_prochandle_t ph, lwpid_t lwpid, caddr_t xregset)
178 ps_pglobal_lookup (gdb_ps_prochandle_t ph, const char *obj,
196 ps_pdread (gdb_ps_prochandle_t ph, paddr_t addr,
199 return ps_xfer_memory (ph, addr, buf, size, 0);
205 ps_pdwrite (gdb_ps_prochandle_t ph, paddr_t addr,
208 return ps_xfer_memory (ph, addr, (char *) buf, size, 1);
215 ps_ptread (gdb_ps_prochandle_t ph, paddr_t addr,
218 return ps_xfer_memory (ph, addr, buf, size, 0);
224 ps_ptwrite (gdb_ps_prochandle_t ph, paddr_t addr,
227 return ps_xfer_memory (ph, addr, (char *) buf, size, 1);
234 ps_lgetregs (gdb_ps_prochandle_t ph, lwpid_t lwpid, prgregset_t gregset)
238 inferior_ptid = BUILD_LWP (lwpid, ph->pid);
251 ps_lsetregs (gdb_ps_prochandle_t ph, lwpid_t lwpid, const prgregset_t gregset)
255 inferior_ptid = BUILD_LWP (lwpid, ph->pid);
269 ps_lgetfpregs (gdb_ps_prochandle_t ph, lwpid_t lwpid,
274 inferior_ptid = BUILD_LWP (lwpid, ph->pid);
287 ps_lsetfpregs (gdb_ps_prochandle_t ph, lwpid_t lwpid,
292 inferior_ptid = BUILD_LWP (lwpid, ph->pid);
306 ps_getpid (gdb_ps_prochandle_t ph)
308 return ph->pid;