Home
last modified time | relevance | path

Searched refs:m_stop_id (Results 1 – 19 of 19) sorted by relevance

/external/llvm-project/lldb/source/Target/
DThreadList.cpp26 : ThreadCollection(), m_process(process), m_stop_id(0), in ThreadList()
30 : ThreadCollection(), m_process(rhs.m_process), m_stop_id(rhs.m_stop_id), in ThreadList()
46 m_stop_id = rhs.m_stop_id; in operator =()
78 uint32_t ThreadList::GetStopID() const { return m_stop_id; } in GetStopID()
80 void ThreadList::SetStopID(uint32_t stop_id) { m_stop_id = stop_id; } in SetStopID()
445 m_stop_id = 0; in Clear()
706 m_stop_id = rhs.m_stop_id; in Update()
DQueueItem.cpp24 m_target_queue_id(LLDB_INVALID_QUEUE_ID), m_stop_id(0), m_backtrace(), in QueueItem()
75 return m_stop_id; in GetStopID()
DQueueList.cpp17 : m_process(process), m_stop_id(0), m_queues(), m_mutex() {} in QueueList()
DStopInfo.cpp32 m_stop_id(thread.GetProcess()->GetStopID()), in StopInfo()
40 return thread_sp->GetProcess()->GetStopID() == m_stop_id; in IsValid()
47 m_stop_id = thread_sp->GetProcess()->GetStopID(); in MakeStopInfoValid()
DRegisterContext.cpp28 m_stop_id(thread.GetProcess()->GetStopID()) {} in RegisterContext()
/external/llvm-project/lldb/include/lldb/Target/
DRegisterContext.h194 uint32_t GetStopID() const { return m_stop_id; } in GetStopID()
196 void SetStopID(uint32_t stop_id) { m_stop_id = stop_id; } in SetStopID()
203 uint32_t m_stop_id; // The stop ID that any data in this context is valid for variable
DQueueItem.h112 void SetStopID(uint32_t stop_id) { m_stop_id = stop_id; } in SetStopID()
155 uint32_t m_stop_id; // indicates when this backtrace was recorded in time variable
DProcess.h249 : m_stop_id(0), m_last_natural_stop_id(0), m_resume_id(0), m_memory_id(0), in ProcessModID()
254 : m_stop_id(rhs.m_stop_id), m_memory_id(rhs.m_memory_id) {} in ProcessModID()
258 m_stop_id = rhs.m_stop_id;
267 m_stop_id++; in BumpStopID()
284 uint32_t GetStopID() const { return m_stop_id; } in GetStopID()
297 return m_stop_id == compare.m_stop_id; in StopIDEqual()
300 void SetInvalid() { m_stop_id = UINT32_MAX; } in SetInvalid()
302 bool IsValid() const { return m_stop_id != UINT32_MAX; } in IsValid()
342 uint32_t m_stop_id;
DQueueList.h100 m_stop_id; ///< The process stop ID that this queue list is valid for. variable
DThreadList.h148 m_stop_id; ///< The process stop ID that this thread list is valid for. variable
DStopInfo.h162 uint32_t m_stop_id; // The process stop ID for which this stop info is valid variable
/external/llvm-project/lldb/source/Plugins/Process/Utility/
DRegisterContextThreadMemory.cpp23 m_reg_ctx_sp(), m_register_data_addr(register_data_addr), m_stop_id(0) {} in RegisterContextThreadMemory()
34 if (m_stop_id != stop_id) { in UpdateRegisterContext()
35 m_stop_id = stop_id; in UpdateRegisterContext()
DRegisterContextThreadMemory.h92 uint32_t m_stop_id; variable
/external/llvm-project/lldb/source/Host/common/
DNativeProcessProtocol.cpp733 ++m_stop_id; in SetState()
739 DoStopIDBumped(m_stop_id); in SetState()
749 return m_stop_id; in GetStopID()
/external/llvm-project/lldb/examples/summaries/
Dlldb12 …ldb lldb_private::StopInfo -s "ID: ${var.m_stop_id}, ${var.m_descri…
/external/llvm-project/lldb/source/Core/
DIOHandlerCursesGUI.cpp2056 m_stop_id(UINT32_MAX) { in ThreadTreeDelegate()
2097 if (m_stop_id == process_sp->GetStopID() && in TreeDelegateGenerateChildren()
2105 m_stop_id = process_sp->GetStopID(); in TreeDelegateGenerateChildren()
2146 uint32_t m_stop_id; member in ThreadTreeDelegate
2154 m_stop_id(UINT32_MAX) { in ThreadsTreeDelegate()
2186 if (m_stop_id == stop_id) in TreeDelegateGenerateChildren()
2189 m_stop_id = stop_id; in TreeDelegateGenerateChildren()
2218 uint32_t m_stop_id; member in ThreadsTreeDelegate
3398 m_stop_id(0), m_frame_idx(UINT32_MAX), m_first_visible_line(0), in SourceFileWindowDelegate()
3480 const bool stop_id_changed = stop_id != m_stop_id; in WindowDelegateDraw()
[all …]
DValueObject.cpp3257 m_user_valobj_sp(), m_use_dynamic(use_dynamic), m_stop_id(UINT32_MAX), in ValueObjectManager()
3281 if (current_stop_id == m_stop_id) in GetSP()
3284 m_stop_id = current_stop_id; in GetSP()
3312 m_stop_id = UINT32_MAX; in SetUseDynamic()
3320 m_stop_id = UINT32_MAX; in SetUseSynthetic()
/external/llvm-project/lldb/include/lldb/Host/common/
DNativeProcessProtocol.h424 uint32_t m_stop_id = 0; variable
/external/llvm-project/lldb/include/lldb/Core/
DValueObject.h998 uint32_t m_stop_id; // The stop ID that m_user_valobj_sp is valid for. variable