Searched refs:stop_id (Results 1 - 20 of 20) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/
H A DSectionLoadHistory.cpp36 SectionLoadHistory::GetSectionLoadListForStopID(uint32_t stop_id, argument
44 if (stop_id == eStopIDNow) {
52 m_stop_id_to_section_load_list.lower_bound(stop_id);
54 pos->first == stop_id)
64 assert(stop_id != eStopIDNow);
70 m_stop_id_to_section_load_list.lower_bound(stop_id);
72 pos->first == stop_id) {
84 m_stop_id_to_section_load_list[stop_id] = section_load_list_sp;
89 if (stop_id == eStopIDNow)
90 stop_id
105 GetSectionLoadAddress(uint32_t stop_id, const lldb::SectionSP &section_sp) argument
114 ResolveLoadAddress(uint32_t stop_id, addr_t load_addr, Address &so_addr) argument
124 SetSectionLoadAddress( uint32_t stop_id, const lldb::SectionSP &section_sp, addr_t load_addr, bool warn_multiple) argument
136 SetSectionUnloaded(uint32_t stop_id, const lldb::SectionSP &section_sp) argument
145 SetSectionUnloaded(uint32_t stop_id, const lldb::SectionSP &section_sp, addr_t load_addr) argument
[all...]
H A DTarget.cpp2736 uint32_t stop_id) {
2737 return m_section_load_history.ResolveLoadAddress(stop_id, load_addr, so_addr);
2752 uint32_t stop_id = 0; local
2755 stop_id = process_sp->GetStopID();
2757 stop_id = m_section_load_history.GetLastStopID();
2759 stop_id, section_sp, new_section_load_addr, warn_multiple))
2776 uint32_t stop_id = 0; local
2779 stop_id = process_sp->GetStopID();
2781 stop_id = m_section_load_history.GetLastStopID();
2788 stop_id, section
2735 ResolveLoadAddress(addr_t load_addr, Address &so_addr, uint32_t stop_id) argument
2795 uint32_t stop_id = 0; local
2806 uint32_t stop_id = 0; local
[all...]
H A DThreadList.cpp80 void ThreadList::SetStopID(uint32_t stop_id) { m_stop_id = stop_id; } argument
H A DThread.cpp367 const uint32_t stop_id = process_sp ? process_sp->GetStopID() : UINT32_MAX; local
376 m_stop_info_stop_id == stop_id;
478 LLDB_LOGF(log, "%p: tid = 0x%" PRIx64 ": stop info = %s (stop_id = %u)",
H A DProcess.cpp1176 const uint32_t stop_id = GetStopID(); local
1178 stop_id != m_thread_list.GetStopID()) {
1234 m_thread_list.SetStopID(stop_id);
1450 LLDB_LOGF(log, "Process::SetPrivateState (%s) stop_id = %u",
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Target/
H A 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,
H A DQueueItem.h112 void SetStopID(uint32_t stop_id) { m_stop_id = stop_id; } argument
H A DRegisterContext.h194 void SetStopID(uint32_t stop_id) { m_stop_id = stop_id; } argument
H A DThreadList.h134 void SetStopID(uint32_t stop_id);
H A DProcess.h321 lldb::EventSP GetStopEventForStopID(uint32_t stop_id) const {
322 if (stop_id == m_last_natural_stop_id)
1351 lldb::EventSP GetStopEventForStopID(uint32_t stop_id) const {
1352 return m_mod_id.GetStopEventForStopID(stop_id);
H A DTarget.h1066 uint32_t stop_id = SectionLoadHistory::eStopIDNow);
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/Utility/
H A DRegisterContextThreadMemory.cpp33 const uint32_t stop_id = process_sp->GetModID().GetStopID(); local
34 if (m_stop_id != stop_id) {
35 m_stop_id = stop_id;
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DThreadGDBRemote.h111 void SetStopInfoFromPacket(StringExtractor &stop_packet, uint32_t stop_id);
H A DProcessGDBRemote.cpp2147 const uint32_t stop_id = GetStopID();
2148 if (stop_id == 0) {
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/API/
H A DSBProcess.h178 /// \param [in] stop_id
183 lldb::SBEvent GetStopEventForStopID(uint32_t stop_id);
H A DSBTarget.h485 /// \param[in] stop_id
502 lldb::SBAddress ResolvePastLoadAddress(uint32_t stop_id,
/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/
H A DIOHandlerCursesGUI.cpp1348 auto stop_id = process_sp->GetStopID(); local
1349 if (process_sp && stop_id != children_stop_id) {
1350 children_stop_id = stop_id;
2010 const uint32_t stop_id = process_sp->GetStopID(); variable
2011 if (m_stop_id == stop_id)
2014 m_stop_id = stop_id;
3293 const uint32_t stop_id = process ? process->GetStopID() : 0; variable
3294 const bool stop_id_changed = stop_id != m_stop_id;
3296 m_stop_id = stop_id;
/freebsd-11-stable/contrib/llvm-project/lldb/source/API/
H A DSBProcess.cpp500 SBEvent SBProcess::GetStopEventForStopID(uint32_t stop_id) { argument
502 (uint32_t), stop_id);
510 event_sp = process_sp->GetStopEventForStopID(stop_id);
H A DSBTarget.cpp640 lldb::SBAddress SBTarget::ResolvePastLoadAddress(uint32_t stop_id, argument
643 (uint32_t, lldb::addr_t), stop_id, vm_addr);
/freebsd-11-stable/contrib/llvm-project/lldb/bindings/interface/
H A DSBTarget.i534 ResolvePastLoadAddress (uint32_t stop_id, lldb::addr_t vm_addr);

Completed in 343 milliseconds