Home | History | Annotate | Download | only in libthread_db

Lines Matching refs:handle

80 _event_getmsg_helper(td_thrhandle_t const * handle, void * bkpt_addr)
88 pc = (void *)ptrace(PTRACE_PEEKUSR, handle->tid, (void *)48 /* eip */, NULL);
98 gEventMsgHandle.pid = ptrace(PTRACE_PEEKUSR, handle->tid, (void *)4 /* ecx */, NULL);
103 pc = (void *)ptrace(PTRACE_PEEKUSR, handle->tid, (void *)60 /* r15/pc */, NULL);
108 gEventMsgHandle.pid = ptrace(PTRACE_PEEKUSR, handle->tid, (void *)0 /* r0 */, NULL);
113 pc = (void *)ptrace(PTRACE_PEEKUSR, handle->tid, (void *)(64*4) /* pc */, NULL);
117 gEventMsgHandle.pid = ptrace(PTRACE_PEEKUSR, handle->tid, (void *)(4*4) /* a0 */, NULL);
161 td_thr_get_info(td_thrhandle_t const * handle, td_thrinfo_t * info)
163 info->ti_tid = handle->tid;
164 info->ti_lid = handle->tid;
174 td_thr_event_enable(td_thrhandle_t const * handle, td_event_e event)
223 td_thrhandle_t handle;
231 handle.pid = agent->pid;
236 handle.tid = atoi(entry->d_name);
237 if (func(&handle, cookie) != 0) {