• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /freebsd-13-stable/lib/libthread_db/

Lines Matching defs:ta

71 td_ta_clear_event(const td_thragent_t *ta, td_thr_events_t *events)
73 return (ta->ta_ops->to_ta_clear_event(ta, events));
77 td_ta_delete(td_thragent_t *ta)
79 TAILQ_REMOVE(&proclist, ta, ta_next);
80 return (ta->ta_ops->to_ta_delete(ta));
84 td_ta_event_addr(const td_thragent_t *ta, td_event_e event, td_notify_t *ptr)
86 return (ta->ta_ops->to_ta_event_addr(ta, event, ptr));
90 td_ta_event_getmsg(const td_thragent_t *ta, td_event_msg_t *msg)
92 return (ta->ta_ops->to_ta_event_getmsg(ta, msg));
96 td_ta_map_id2thr(const td_thragent_t *ta, thread_t id, td_thrhandle_t *th)
98 return (ta->ta_ops->to_ta_map_id2thr(ta, id, th));
102 td_ta_map_lwp2thr(const td_thragent_t *ta, lwpid_t lwpid, td_thrhandle_t *th)
104 return (ta->ta_ops->to_ta_map_lwp2thr(ta, lwpid, th));
124 td_ta_set_event(const td_thragent_t *ta, td_thr_events_t *events)
126 return (ta->ta_ops->to_ta_set_event(ta, events));
130 td_ta_thr_iter(const td_thragent_t *ta, td_thr_iter_f *callback,
134 return (ta->ta_ops->to_ta_thr_iter(ta, callback, cbdata_p, state,
139 td_ta_tsd_iter(const td_thragent_t *ta, td_key_iter_f *callback,
142 return (ta->ta_ops->to_ta_tsd_iter(ta, callback, cbdata_p));
148 const td_thragent_t *ta = th->th_ta;
149 return (ta->ta_ops->to_thr_clear_event(th, events));
155 const td_thragent_t *ta = th->th_ta;
156 return (ta->ta_ops->to_thr_dbresume(th));
162 const td_thragent_t *ta = th->th_ta;
163 return (ta->ta_ops->to_thr_dbsuspend(th));
169 const td_thragent_t *ta = th->th_ta;
170 return (ta->ta_ops->to_thr_event_enable(th, en));
176 const td_thragent_t *ta = th->th_ta;
177 return (ta->ta_ops->to_thr_event_getmsg(th, msg));
183 const td_thragent_t *ta = th->th_ta;
184 return (ta->ta_ops->to_thr_old_get_info(th, info));
191 const td_thragent_t *ta = th->th_ta;
192 return (ta->ta_ops->to_thr_get_info(th, info));
199 const td_thragent_t *ta = th->th_ta;
200 return (ta->ta_ops->to_thr_getxmmregs(th, fxsave));
208 const td_thragent_t *ta = th->th_ta;
209 return (ta->ta_ops->to_thr_getfpregs(th, fpregset));
215 const td_thragent_t *ta = th->th_ta;
216 return (ta->ta_ops->to_thr_getgregs(th, gregs));
222 const td_thragent_t *ta = th->th_ta;
223 return (ta->ta_ops->to_thr_set_event(th, events));
230 const td_thragent_t *ta = th->th_ta;
231 return (ta->ta_ops->to_thr_setxmmregs(th, fxsave));
238 const td_thragent_t *ta = th->th_ta;
239 return (ta->ta_ops->to_thr_setfpregs(th, fpregs));
245 const td_thragent_t *ta = th->th_ta;
246 return (ta->ta_ops->to_thr_setgregs(th, gregs));
252 const td_thragent_t *ta = th->th_ta;
253 return (ta->ta_ops->to_thr_validate(th));
260 const td_thragent_t *ta = th->th_ta;
261 return (ta->ta_ops->to_thr_tls_get_addr(th, linkmap, offset, address));
269 const td_thragent_t *ta = th->th_ta;
270 return (ta->ta_ops->to_thr_sstep(th, step));
337 thr_pread_int(const struct td_thragent *ta, psaddr_t addr, uint32_t *val)
342 error = thr_pread(ta->ph, addr, &tmp, sizeof(int), BYTE_ORDER);
350 thr_pread_long(const struct td_thragent *ta, psaddr_t addr, uint64_t *val)
353 return (thr_pread(ta->ph, addr, val, sizeof(long), BYTE_ORDER));
357 thr_pread_ptr(const struct td_thragent *ta, psaddr_t addr, psaddr_t *val)
362 error = thr_pread(ta->ph, addr, &tmp, sizeof(void *), BYTE_ORDER);
425 thr_pwrite_int(const struct td_thragent *ta, psaddr_t addr, uint32_t val)
428 return (thr_pwrite(ta->ph, addr, val, sizeof(int), BYTE_ORDER));
432 thr_pwrite_long(const struct td_thragent *ta, psaddr_t addr, uint64_t val)
435 return (thr_pwrite(ta->ph, addr, val, sizeof(long), BYTE_ORDER));
439 thr_pwrite_ptr(const struct td_thragent *ta, psaddr_t addr, psaddr_t val)
442 return (thr_pwrite(ta->ph, addr, val, sizeof(void *), BYTE_ORDER));