Lines Matching refs:ta

69 td_ta_clear_event(const td_thragent_t *ta, td_thr_events_t *events)
71 return (ta->ta_ops->to_ta_clear_event(ta, events));
75 td_ta_delete(td_thragent_t *ta)
77 TAILQ_REMOVE(&proclist, ta, ta_next);
78 return (ta->ta_ops->to_ta_delete(ta));
82 td_ta_event_addr(const td_thragent_t *ta, td_event_e event, td_notify_t *ptr)
84 return (ta->ta_ops->to_ta_event_addr(ta, event, ptr));
88 td_ta_event_getmsg(const td_thragent_t *ta, td_event_msg_t *msg)
90 return (ta->ta_ops->to_ta_event_getmsg(ta, msg));
94 td_ta_map_id2thr(const td_thragent_t *ta, thread_t id, td_thrhandle_t *th)
96 return (ta->ta_ops->to_ta_map_id2thr(ta, id, th));
100 td_ta_map_lwp2thr(const td_thragent_t *ta, lwpid_t lwpid, td_thrhandle_t *th)
102 return (ta->ta_ops->to_ta_map_lwp2thr(ta, lwpid, th));
122 td_ta_set_event(const td_thragent_t *ta, td_thr_events_t *events)
124 return (ta->ta_ops->to_ta_set_event(ta, events));
128 td_ta_thr_iter(const td_thragent_t *ta, td_thr_iter_f *callback,
132 return (ta->ta_ops->to_ta_thr_iter(ta, callback, cbdata_p, state,
137 td_ta_tsd_iter(const td_thragent_t *ta, td_key_iter_f *callback,
140 return (ta->ta_ops->to_ta_tsd_iter(ta, callback, cbdata_p));
146 const td_thragent_t *ta = th->th_ta;
147 return (ta->ta_ops->to_thr_clear_event(th, events));
153 const td_thragent_t *ta = th->th_ta;
154 return (ta->ta_ops->to_thr_dbresume(th));
160 const td_thragent_t *ta = th->th_ta;
161 return (ta->ta_ops->to_thr_dbsuspend(th));
167 const td_thragent_t *ta = th->th_ta;
168 return (ta->ta_ops->to_thr_event_enable(th, en));
174 const td_thragent_t *ta = th->th_ta;
175 return (ta->ta_ops->to_thr_event_getmsg(th, msg));
181 const td_thragent_t *ta = th->th_ta;
182 return (ta->ta_ops->to_thr_old_get_info(th, info));
189 const td_thragent_t *ta = th->th_ta;
190 return (ta->ta_ops->to_thr_get_info(th, info));
197 const td_thragent_t *ta = th->th_ta;
198 return (ta->ta_ops->to_thr_getxmmregs(th, fxsave));
206 const td_thragent_t *ta = th->th_ta;
207 return (ta->ta_ops->to_thr_getfpregs(th, fpregset));
213 const td_thragent_t *ta = th->th_ta;
214 return (ta->ta_ops->to_thr_getgregs(th, gregs));
220 const td_thragent_t *ta = th->th_ta;
221 return (ta->ta_ops->to_thr_set_event(th, events));
228 const td_thragent_t *ta = th->th_ta;
229 return (ta->ta_ops->to_thr_setxmmregs(th, fxsave));
236 const td_thragent_t *ta = th->th_ta;
237 return (ta->ta_ops->to_thr_setfpregs(th, fpregs));
243 const td_thragent_t *ta = th->th_ta;
244 return (ta->ta_ops->to_thr_setgregs(th, gregs));
250 const td_thragent_t *ta = th->th_ta;
251 return (ta->ta_ops->to_thr_validate(th));
258 const td_thragent_t *ta = th->th_ta;
259 return (ta->ta_ops->to_thr_tls_get_addr(th, linkmap, offset, address));
267 const td_thragent_t *ta = th->th_ta;
268 return (ta->ta_ops->to_thr_sstep(th, step));
335 thr_pread_int(const struct td_thragent *ta, psaddr_t addr, uint32_t *val)
340 error = thr_pread(ta->ph, addr, &tmp, sizeof(int), BYTE_ORDER);
348 thr_pread_long(const struct td_thragent *ta, psaddr_t addr, uint64_t *val)
351 return (thr_pread(ta->ph, addr, val, sizeof(long), BYTE_ORDER));
355 thr_pread_ptr(const struct td_thragent *ta, psaddr_t addr, psaddr_t *val)
360 error = thr_pread(ta->ph, addr, &tmp, sizeof(void *), BYTE_ORDER);
423 thr_pwrite_int(const struct td_thragent *ta, psaddr_t addr, uint32_t val)
426 return (thr_pwrite(ta->ph, addr, val, sizeof(int), BYTE_ORDER));
430 thr_pwrite_long(const struct td_thragent *ta, psaddr_t addr, uint64_t val)
433 return (thr_pwrite(ta->ph, addr, val, sizeof(long), BYTE_ORDER));
437 thr_pwrite_ptr(const struct td_thragent *ta, psaddr_t addr, psaddr_t val)
440 return (thr_pwrite(ta->ph, addr, val, sizeof(void *), BYTE_ORDER));