Home
last modified time | relevance | path

Searched refs:stop_info (Results 1 – 10 of 10) sorted by relevance

/external/lldb/tools/debugserver/source/MacOSX/
DMachException.cpp205 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 …]
DMachThreadList.h41 …bool GetThreadStoppedReason (nub_thread_t tid, struct DNBThreadStopInfo *stop_info) con…
DMachException.h89 bool GetStopInfo(struct DNBThreadStopInfo *stop_info) const;
DMachThreadList.cpp65 MachThreadList::GetThreadStoppedReason(nub_thread_t tid, struct DNBThreadStopInfo *stop_info) const in GetThreadStoppedReason()
69 return thread_sp->GetStopException().GetStopInfo(stop_info); in GetThreadStoppedReason()
DMachProcess.h179 …l GetThreadStoppedReason(nub_thread_t tid, struct DNBThreadStopInfo *stop_info);
DMachProcess.cpp203 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/
DThreadPlanTracer.cpp91 lldb::StopInfoSP stop_info = m_thread.GetStopInfo(); in TracerExplainsStop() local
92 if (stop_info->GetStopReason() == eStopReasonTrace) in TracerExplainsStop()
DThread.cpp623 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/
DDNB.h119 …StopReason (nub_process_t pid, nub_thread_t tid, DNBThreadStopInfo *stop_info) DNB_EXPORT;
DDNB.cpp1613 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()