Lines Matching refs:th

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));
144 td_thr_clear_event(const td_thrhandle_t *th, td_thr_events_t *events)
146 const td_thragent_t *ta = th->th_ta;
147 return (ta->ta_ops->to_thr_clear_event(th, events));
151 td_thr_dbresume(const td_thrhandle_t *th)
153 const td_thragent_t *ta = th->th_ta;
154 return (ta->ta_ops->to_thr_dbresume(th));
158 td_thr_dbsuspend(const td_thrhandle_t *th)
160 const td_thragent_t *ta = th->th_ta;
161 return (ta->ta_ops->to_thr_dbsuspend(th));
165 td_thr_event_enable(const td_thrhandle_t *th, int en)
167 const td_thragent_t *ta = th->th_ta;
168 return (ta->ta_ops->to_thr_event_enable(th, en));
172 td_thr_event_getmsg(const td_thrhandle_t *th, td_event_msg_t *msg)
174 const td_thragent_t *ta = th->th_ta;
175 return (ta->ta_ops->to_thr_event_getmsg(th, msg));
179 td_thr_old_get_info(const td_thrhandle_t *th, td_old_thrinfo_t *info)
181 const td_thragent_t *ta = th->th_ta;
182 return (ta->ta_ops->to_thr_old_get_info(th, info));
187 td_thr_get_info(const td_thrhandle_t *th, td_thrinfo_t *info)
189 const td_thragent_t *ta = th->th_ta;
190 return (ta->ta_ops->to_thr_get_info(th, info));
195 td_thr_getxmmregs(const td_thrhandle_t *th, char *fxsave)
197 const td_thragent_t *ta = th->th_ta;
198 return (ta->ta_ops->to_thr_getxmmregs(th, fxsave));
204 td_thr_getfpregs(const td_thrhandle_t *th, prfpregset_t *fpregset)
206 const td_thragent_t *ta = th->th_ta;
207 return (ta->ta_ops->to_thr_getfpregs(th, fpregset));
211 td_thr_getgregs(const td_thrhandle_t *th, prgregset_t gregs)
213 const td_thragent_t *ta = th->th_ta;
214 return (ta->ta_ops->to_thr_getgregs(th, gregs));
218 td_thr_set_event(const td_thrhandle_t *th, td_thr_events_t *events)
220 const td_thragent_t *ta = th->th_ta;
221 return (ta->ta_ops->to_thr_set_event(th, events));
226 td_thr_setxmmregs(const td_thrhandle_t *th, const char *fxsave)
228 const td_thragent_t *ta = th->th_ta;
229 return (ta->ta_ops->to_thr_setxmmregs(th, fxsave));
234 td_thr_setfpregs(const td_thrhandle_t *th, const prfpregset_t *fpregs)
236 const td_thragent_t *ta = th->th_ta;
237 return (ta->ta_ops->to_thr_setfpregs(th, fpregs));
241 td_thr_setgregs(const td_thrhandle_t *th, const prgregset_t gregs)
243 const td_thragent_t *ta = th->th_ta;
244 return (ta->ta_ops->to_thr_setgregs(th, gregs));
248 td_thr_validate(const td_thrhandle_t *th)
250 const td_thragent_t *ta = th->th_ta;
251 return (ta->ta_ops->to_thr_validate(th));
255 td_thr_tls_get_addr(const td_thrhandle_t *th, psaddr_t linkmap, size_t offset,
258 const td_thragent_t *ta = th->th_ta;
259 return (ta->ta_ops->to_thr_tls_get_addr(th, linkmap, offset, address));
265 td_thr_sstep(const td_thrhandle_t *th, int step)
267 const td_thragent_t *ta = th->th_ta;
268 return (ta->ta_ops->to_thr_sstep(th, step));