| /NextBSD/contrib/llvm/tools/lldb/source/Target/ |
| HD | SectionLoadHistory.cpp | 48 SectionLoadHistory::GetSectionLoadListForStopID (uint32_t stop_id, bool read_only) in GetSectionLoadListForStopID() argument 57 if (stop_id == eStopIDNow) in GetSectionLoadListForStopID() 66 … StopIDToSectionLoadList::iterator pos = m_stop_id_to_section_load_list.lower_bound(stop_id); in GetSectionLoadListForStopID() 67 if (pos != m_stop_id_to_section_load_list.end() && pos->first == stop_id) in GetSectionLoadListForStopID() 79 assert(stop_id != eStopIDNow); in GetSectionLoadListForStopID() 84 … StopIDToSectionLoadList::iterator pos = m_stop_id_to_section_load_list.lower_bound(stop_id); in GetSectionLoadListForStopID() 85 if (pos != m_stop_id_to_section_load_list.end() && pos->first == stop_id) in GetSectionLoadListForStopID() 96 m_stop_id_to_section_load_list[stop_id] = section_load_list_sp; in GetSectionLoadListForStopID() 101 if (stop_id == eStopIDNow) in GetSectionLoadListForStopID() 102 stop_id = 0; in GetSectionLoadListForStopID() [all …]
|
| HD | Target.cpp | 2415 Target::ResolveLoadAddress (addr_t load_addr, Address &so_addr, uint32_t stop_id) in ResolveLoadAddress() argument 2417 return m_section_load_history.ResolveLoadAddress(stop_id, load_addr, so_addr); in ResolveLoadAddress() 2432 uint32_t stop_id = 0; in SetSectionLoadAddress() local 2435 stop_id = process_sp->GetStopID(); in SetSectionLoadAddress() 2437 stop_id = m_section_load_history.GetLastStopID(); in SetSectionLoadAddress() 2438 …if (m_section_load_history.SetSectionLoadAddress (stop_id, section_sp, new_section_load_addr, warn… in SetSectionLoadAddress() 2460 uint32_t stop_id = 0; in UnloadModuleSections() local 2463 stop_id = process_sp->GetStopID(); in UnloadModuleSections() 2465 stop_id = m_section_load_history.GetLastStopID(); in UnloadModuleSections() 2473 …section_unload_count += m_section_load_history.SetSectionUnloaded(stop_id, sections->GetSectionAtI… in UnloadModuleSections() [all …]
|
| HD | ThreadList.cpp | 76 ThreadList::SetStopID (uint32_t stop_id) in SetStopID() argument 78 m_stop_id = stop_id; in SetStopID()
|
| HD | StackFrame.cpp | 52 uint32_t stop_id, in StackFrame() argument 67 m_stop_id (stop_id), in StackFrame()
|
| HD | Thread.cpp | 423 const uint32_t stop_id = process_sp ? process_sp->GetStopID() : UINT32_MAX; in GetStopInfo() local 430 …if ((m_stop_info_stop_id == stop_id) || // Stop info is valid, just return what we have (even if… in GetStopInfo()
|
| HD | Process.cpp | 1541 const uint32_t stop_id = GetStopID(); in UpdateThreadListIfNeeded() local 1542 if (m_thread_list.GetSize(false) == 0 || stop_id != m_thread_list.GetStopID()) in UpdateThreadListIfNeeded() 1600 m_thread_list.SetStopID (stop_id); in UpdateThreadListIfNeeded()
|
| /NextBSD/contrib/llvm/tools/lldb/include/lldb/Target/ |
| HD | SectionLoadHistory.h | 61 GetSectionLoadAddress (uint32_t stop_id, 65 ResolveLoadAddress (uint32_t stop_id, 70 SetSectionLoadAddress (uint32_t stop_id, 79 SetSectionUnloaded (uint32_t stop_id, 87 SetSectionUnloaded (uint32_t stop_id, 97 GetSectionLoadListForStopID (uint32_t stop_id, bool read_only);
|
| HD | QueueItem.h | 155 SetStopID (uint32_t stop_id) in SetStopID() argument 157 m_stop_id = stop_id; in SetStopID()
|
| HD | RegisterContext.h | 244 SetStopID (uint32_t stop_id) in SetStopID() argument 246 m_stop_id = stop_id; in SetStopID()
|
| HD | ThreadList.h | 129 SetStopID (uint32_t stop_id);
|
| HD | StackFrame.h | 117 uint32_t stop_id,
|
| HD | Process.h | 696 lldb::EventSP GetStopEventForStopID (uint32_t stop_id) const in GetStopEventForStopID() argument 698 if (stop_id == m_last_natural_stop_id) in GetStopEventForStopID() 2016 GetStopEventForStopID (uint32_t stop_id) const in GetStopEventForStopID() argument 2018 return m_mod_id.GetStopEventForStopID(stop_id); in GetStopEventForStopID()
|
| HD | Target.h | 1240 uint32_t stop_id = SectionLoadHistory::eStopIDNow);
|
| /NextBSD/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/ |
| HD | RegisterContextThreadMemory.cpp | 45 const uint32_t stop_id = process_sp->GetModID().GetStopID(); in UpdateRegisterContext() local 46 if (m_stop_id != stop_id) in UpdateRegisterContext() 48 m_stop_id = stop_id; in UpdateRegisterContext()
|
| HD | HistoryThread.cpp | 28 uint32_t stop_id, in HistoryThread() argument 34 m_stop_id (stop_id), in HistoryThread()
|
| HD | HistoryThread.h | 38 …ocess &process, lldb::tid_t tid, std::vector<lldb::addr_t> pcs, uint32_t stop_id, bool stop_id_is_…
|
| /NextBSD/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/ |
| HD | ThreadGDBRemote.h | 129 SetStopInfoFromPacket (StringExtractor &stop_packet, uint32_t stop_id);
|
| HD | ProcessGDBRemote.cpp | 2282 const uint32_t stop_id = GetStopID(); in SetThreadStopInfo() local 2283 if (stop_id == 0) in SetThreadStopInfo()
|
| /NextBSD/contrib/llvm/tools/lldb/include/lldb/API/ |
| HD | SBProcess.h | 246 GetStopEventForStopID(uint32_t stop_id);
|
| HD | SBTarget.h | 583 ResolvePastLoadAddress (uint32_t stop_id, lldb::addr_t vm_addr);
|
| /NextBSD/contrib/llvm/tools/lldb/source/API/ |
| HD | SBProcess.cpp | 605 SBProcess::GetStopEventForStopID(uint32_t stop_id) in GetStopEventForStopID() argument 615 event_sp = process_sp->GetStopEventForStopID(stop_id); in GetStopEventForStopID() 622 stop_id, in GetStopEventForStopID()
|
| HD | SBTarget.cpp | 736 SBTarget::ResolvePastLoadAddress (uint32_t stop_id, lldb::addr_t vm_addr) in ResolvePastLoadAddress() argument
|
| /NextBSD/contrib/llvm/tools/lldb/source/Core/ |
| HD | IOHandler.cpp | 3423 const uint32_t stop_id = process_sp->GetStopID(); in TreeDelegateGenerateChildren() local 3424 if (m_stop_id == stop_id) in TreeDelegateGenerateChildren() 3427 m_stop_id = stop_id; in TreeDelegateGenerateChildren() 4815 const uint32_t stop_id = process ? process->GetStopID() : 0; in WindowDelegateDraw() local 4816 const bool stop_id_changed = stop_id != m_stop_id; in WindowDelegateDraw() 4818 m_stop_id = stop_id; in WindowDelegateDraw()
|