Lines Matching refs:ph
106 td_ta_new(struct ps_prochandle *ph, td_thragent_t **pta) in td_ta_new() argument
112 if (ops_p->to_ta_new(ph, pta) == TD_OK) { in td_ta_new()
277 thr_pread(struct ps_prochandle *ph, psaddr_t addr, uint64_t *val, in thr_pread() argument
286 err = ps_pread(ph, addr, buf, size); in thr_pread()
340 error = thr_pread(ta->ph, addr, &tmp, sizeof(int), BYTE_ORDER); in thr_pread_int()
351 return (thr_pread(ta->ph, addr, val, sizeof(long), BYTE_ORDER)); in thr_pread_long()
360 error = thr_pread(ta->ph, addr, &tmp, sizeof(void *), BYTE_ORDER); in thr_pread_ptr()
368 thr_pwrite(struct ps_prochandle *ph, psaddr_t addr, uint64_t val, in thr_pwrite() argument
418 err = ps_pwrite(ph, addr, buf, size); in thr_pwrite()
426 return (thr_pwrite(ta->ph, addr, val, sizeof(int), BYTE_ORDER)); in thr_pwrite_int()
433 return (thr_pwrite(ta->ph, addr, val, sizeof(long), BYTE_ORDER)); in thr_pwrite_long()
440 return (thr_pwrite(ta->ph, addr, val, sizeof(void *), BYTE_ORDER)); in thr_pwrite_ptr()