Home
last modified time | relevance | path

Searched refs:stop_id (Results 1 – 25 of 28) sorted by relevance

12

/openbsd/src/gnu/llvm/lldb/source/Target/
DSectionLoadHistory.cpp36 SectionLoadHistory::GetSectionLoadListForStopID(uint32_t stop_id, in GetSectionLoadListForStopID() argument
44 if (stop_id == eStopIDNow) { in GetSectionLoadListForStopID()
52 m_stop_id_to_section_load_list.lower_bound(stop_id); in GetSectionLoadListForStopID()
54 pos->first == stop_id) in GetSectionLoadListForStopID()
64 assert(stop_id != eStopIDNow); in GetSectionLoadListForStopID()
70 m_stop_id_to_section_load_list.lower_bound(stop_id); in GetSectionLoadListForStopID()
72 pos->first == stop_id) { in GetSectionLoadListForStopID()
84 m_stop_id_to_section_load_list[stop_id] = section_load_list_sp; in GetSectionLoadListForStopID()
89 if (stop_id == eStopIDNow) in GetSectionLoadListForStopID()
90 stop_id = 0; in GetSectionLoadListForStopID()
[all …]
DStatistics.cpp148 uint32_t stop_id = process_sp->GetStopID(); in ToJSON() local
149 target_metrics_json.try_emplace("stopCount", stop_id); in ToJSON()
DTarget.cpp3003 uint32_t stop_id) { in ResolveLoadAddress() argument
3004 return m_section_load_history.ResolveLoadAddress(stop_id, load_addr, so_addr); in ResolveLoadAddress()
3019 uint32_t stop_id = 0; in SetSectionLoadAddress() local
3022 stop_id = process_sp->GetStopID(); in SetSectionLoadAddress()
3024 stop_id = m_section_load_history.GetLastStopID(); in SetSectionLoadAddress()
3026 stop_id, section_sp, new_section_load_addr, warn_multiple)) in SetSectionLoadAddress()
3043 uint32_t stop_id = 0; in UnloadModuleSections() local
3046 stop_id = process_sp->GetStopID(); in UnloadModuleSections()
3048 stop_id = m_section_load_history.GetLastStopID(); in UnloadModuleSections()
3055 stop_id, sections->GetSectionAtIndex(i)); in UnloadModuleSections()
[all …]
DThreadList.cpp81 void ThreadList::SetStopID(uint32_t stop_id) { m_stop_id = stop_id; } in SetStopID() argument
DThread.cpp342 const uint32_t stop_id = process_sp ? process_sp->GetStopID() : UINT32_MAX; in GetStopInfo() local
351 m_stop_info_stop_id == stop_id; in GetStopInfo()
DProcess.cpp1141 const uint32_t stop_id = GetStopID(); in UpdateThreadListIfNeeded() local
1143 stop_id != m_thread_list.GetStopID()) { in UpdateThreadListIfNeeded()
1148 m_thread_list.SetStopID(stop_id); in UpdateThreadListIfNeeded()
1206 m_thread_list.SetStopID(stop_id); in UpdateThreadListIfNeeded()
/openbsd/src/gnu/llvm/lldb/include/lldb/Target/
DSectionLoadHistory.h44 lldb::addr_t GetSectionLoadAddress(uint32_t stop_id,
47 bool ResolveLoadAddress(uint32_t stop_id, lldb::addr_t load_addr,
50 bool SetSectionLoadAddress(uint32_t stop_id,
58 bool SetSectionUnloaded(uint32_t stop_id, const lldb::SectionSP &section_sp,
64 size_t SetSectionUnloaded(uint32_t stop_id,
70 SectionLoadList *GetSectionLoadListForStopID(uint32_t stop_id,
DQueueItem.h112 void SetStopID(uint32_t stop_id) { m_stop_id = stop_id; } in SetStopID() argument
DRegisterContext.h217 void SetStopID(uint32_t stop_id) { m_stop_id = stop_id; } in SetStopID() argument
DThreadList.h134 void SetStopID(uint32_t stop_id);
DProcess.h308 lldb::EventSP GetStopEventForStopID(uint32_t stop_id) const { in GetStopEventForStopID() argument
309 if (stop_id == m_last_natural_stop_id) in GetStopEventForStopID()
1399 lldb::EventSP GetStopEventForStopID(uint32_t stop_id) const { in GetStopEventForStopID() argument
1400 return m_mod_id.GetStopEventForStopID(stop_id); in GetStopEventForStopID()
/openbsd/src/gnu/llvm/lldb/source/Plugins/Process/Utility/
DRegisterContextThreadMemory.cpp33 const uint32_t stop_id = process_sp->GetModID().GetStopID(); in UpdateRegisterContext() local
34 if (m_stop_id != stop_id) { in UpdateRegisterContext()
35 m_stop_id = stop_id; in UpdateRegisterContext()
/openbsd/src/gnu/llvm/lldb/source/Plugins/Process/gdb-remote/
DThreadGDBRemote.h115 void SetStopInfoFromPacket(StringExtractor &stop_packet, uint32_t stop_id);
/openbsd/src/gnu/llvm/lldb/tools/lldb-vscode/
DJSONUtils.h402 llvm::json::Value CreateThreadStopped(lldb::SBThread &thread, uint32_t stop_id);
DJSONUtils.cpp878 uint32_t stop_id) { in CreateThreadStopped() argument
929 if (stop_id == 0) in CreateThreadStopped()
Dlldb-vscode.cpp224 uint32_t stop_id = process.GetStopID(); in SendThreadStoppedEvent() local
261 g_vsc.SendJSON(CreateThreadStopped(thread, stop_id)); in SendThreadStoppedEvent()
267 g_vsc.SendJSON(CreateThreadStopped(thread, stop_id)); in SendThreadStoppedEvent()
/openbsd/src/gnu/llvm/lldb/source/Plugins/DynamicLoader/Darwin-Kernel/
DDynamicLoaderDarwinKernel.h177 void SetProcessStopId(uint32_t stop_id);
DDynamicLoaderDarwinKernel.cpp604 uint32_t stop_id) { in SetProcessStopId() argument
605 m_load_process_stop_id = stop_id; in SetProcessStopId()
/openbsd/src/gnu/llvm/lldb/source/Plugins/SystemRuntime/MacOSX/
DSystemRuntimeMacOSX.h126 uint32_t stop_id; member
DSystemRuntimeMacOSX.cpp909 queue_item->SetStopID(item.stop_id); in CompleteQueueItem()
1006 item.stop_id = extractor.GetU32(&offset); in ExtractItemInfoFromBuffer()
/openbsd/src/gnu/llvm/lldb/include/lldb/API/
DSBProcess.h183 lldb::SBEvent GetStopEventForStopID(uint32_t stop_id);
DSBTarget.h522 lldb::SBAddress ResolvePastLoadAddress(uint32_t stop_id,
/openbsd/src/gnu/llvm/lldb/source/API/
DSBProcess.cpp453 SBEvent SBProcess::GetStopEventForStopID(uint32_t stop_id) { in GetStopEventForStopID() argument
454 LLDB_INSTRUMENT_VA(this, stop_id); in GetStopEventForStopID()
462 event_sp = process_sp->GetStopEventForStopID(stop_id); in GetStopEventForStopID()
/openbsd/src/gnu/llvm/lldb/source/Core/
DIOHandlerCursesGUI.cpp4513 auto stop_id = process_sp->GetStopID(); in GetChildren() local
4514 if (process_sp && stop_id != children_stop_id) { in GetChildren()
4515 children_stop_id = stop_id; in GetChildren()
5209 const uint32_t stop_id = process_sp->GetStopID(); in TreeDelegateGenerateChildren() local
5210 if (m_stop_id == stop_id) in TreeDelegateGenerateChildren()
5213 m_stop_id = stop_id; in TreeDelegateGenerateChildren()
6841 const uint32_t stop_id = process ? process->GetStopID() : 0; in WindowDelegateDraw() local
6842 const bool stop_id_changed = stop_id != m_stop_id; in WindowDelegateDraw()
6844 m_stop_id = stop_id; in WindowDelegateDraw()
/openbsd/src/gnu/llvm/lldb/bindings/interface/
DSBTarget.i522 ResolvePastLoadAddress (uint32_t stop_id, lldb::addr_t vm_addr);

12