Searched refs:stop_info (Results 1 – 10 of 10) sorted by relevance
/external/lldb/tools/debugserver/source/MacOSX/ |
D | MachException.cpp | 205 MachException::Data::GetStopInfo(struct DNBThreadStopInfo *stop_info) const in GetStopInfo() 208 memset(stop_info, 0, sizeof(struct DNBThreadStopInfo)); in GetStopInfo() 210 stop_info->reason = eStopTypeException; in GetStopInfo() 212 stop_info->details.exception.type = exc_type; in GetStopInfo() 216 char *desc = stop_info->description; in GetStopInfo() 223 stop_info->details.exception.data_count = exc_data.size(); in GetStopInfo() 240 …desc += snprintf(desc, end_desc - desc, " data[%llu] = {", (uint64_t)stop_info->details.exception.… in GetStopInfo() 242 for (idx = 0; desc < end_desc && idx < stop_info->details.exception.data_count; ++idx) in GetStopInfo() 243 …esc, end_desc - desc, "0x%llx%c", (uint64_t)exc_data[idx], ((idx + 1 == stop_info->details.excepti… in GetStopInfo() 249 for (i=0; i<stop_info->details.exception.data_count; i++) in GetStopInfo() [all …]
|
D | MachThreadList.h | 41 …bool GetThreadStoppedReason (nub_thread_t tid, struct DNBThreadStopInfo *stop_info) con…
|
D | MachException.h | 89 bool GetStopInfo(struct DNBThreadStopInfo *stop_info) const;
|
D | MachThreadList.cpp | 65 MachThreadList::GetThreadStoppedReason(nub_thread_t tid, struct DNBThreadStopInfo *stop_info) const in GetThreadStoppedReason() 69 return thread_sp->GetStopException().GetStopInfo(stop_info); in GetThreadStoppedReason()
|
D | MachProcess.h | 179 …l GetThreadStoppedReason(nub_thread_t tid, struct DNBThreadStopInfo *stop_info);
|
D | MachProcess.cpp | 203 MachProcess::GetThreadStoppedReason(nub_thread_t tid, struct DNBThreadStopInfo *stop_info) in GetThreadStoppedReason() argument 205 if (m_thread_list.GetThreadStoppedReason(tid, stop_info)) in GetThreadStoppedReason() 208 stop_info->reason = eStopTypeExec; in GetThreadStoppedReason()
|
/external/lldb/source/Target/ |
D | ThreadPlanTracer.cpp | 91 lldb::StopInfoSP stop_info = m_thread.GetStopInfo(); in TracerExplainsStop() local 92 if (stop_info->GetStopReason() == eStopReasonTrace) in TracerExplainsStop()
|
D | Thread.cpp | 623 StopInfo *stop_info = GetPrivateStopInfo().get(); in ShouldResume() local 624 if (stop_info) in ShouldResume() 625 stop_info->WillResume (resume_state); in ShouldResume()
|
/external/lldb/tools/debugserver/source/ |
D | DNB.h | 119 …StopReason (nub_process_t pid, nub_thread_t tid, DNBThreadStopInfo *stop_info) DNB_EXPORT;
|
D | DNB.cpp | 1613 DNBThreadGetStopReason (nub_process_t pid, nub_thread_t tid, struct DNBThreadStopInfo *stop_info) in DNBThreadGetStopReason() argument 1617 return procSP->GetThreadStoppedReason (tid, stop_info); in DNBThreadGetStopReason()
|