Home
last modified time | relevance | path

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

/freebsd-12-stable/contrib/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()
DTrace.cpp188 if (new_stop_id == m_stop_id) in RefreshLiveProcessState()
191 m_stop_id = new_stop_id; in RefreshLiveProcessState()
220 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()
/freebsd-12-stable/contrib/llvm-project/lldb/source/Core/
DValueObjectUpdater.cpp28 if (current_stop_id == m_stop_id) in GetSP()
31 m_stop_id = current_stop_id; in GetSP()
DIOHandlerCursesGUI.cpp3844 m_stop_id(UINT32_MAX) { in ThreadTreeDelegate()
3885 if (m_stop_id == process_sp->GetStopID() && in TreeDelegateGenerateChildren()
3893 m_stop_id = process_sp->GetStopID(); in TreeDelegateGenerateChildren()
3934 uint32_t m_stop_id; member in ThreadTreeDelegate
3942 m_stop_id(UINT32_MAX), m_update_selection(false) { in ThreadsTreeDelegate()
3975 if (m_stop_id == stop_id) in TreeDelegateGenerateChildren()
3978 m_stop_id = stop_id; in TreeDelegateGenerateChildren()
4041 uint32_t m_stop_id; member in ThreadsTreeDelegate
5233 m_selected_line(0), m_pc_line(0), m_stop_id(0), m_frame_idx(UINT32_MAX), in SourceFileWindowDelegate()
5315 const bool stop_id_changed = stop_id != m_stop_id; in WindowDelegateDraw()
[all …]
/freebsd-12-stable/contrib/llvm-project/lldb/include/lldb/Target/
DRegisterContext.h219 uint32_t GetStopID() const { return m_stop_id; } in GetStopID()
221 void SetStopID(uint32_t stop_id) { m_stop_id = stop_id; } in SetStopID()
241 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.h230 : m_stop_id(rhs.m_stop_id), m_memory_id(rhs.m_memory_id) {} in ProcessModID()
234 m_stop_id = rhs.m_stop_id;
243 m_stop_id++; in BumpStopID()
260 uint32_t GetStopID() const { return m_stop_id; } in GetStopID()
273 return m_stop_id == compare.m_stop_id; in StopIDEqual()
276 void SetInvalid() { m_stop_id = UINT32_MAX; } in SetInvalid()
278 bool IsValid() const { return m_stop_id != UINT32_MAX; } in IsValid()
318 uint32_t m_stop_id = 0;
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
DTrace.h298 uint32_t m_stop_id = LLDB_INVALID_STOP_ID; variable
DStopInfo.h165 uint32_t m_stop_id; // The process stop ID for which this stop info is valid variable
/freebsd-12-stable/contrib/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
/freebsd-12-stable/contrib/llvm-project/lldb/include/lldb/Core/
DValueObjectUpdater.h27 uint32_t m_stop_id = UINT32_MAX; variable
/freebsd-12-stable/contrib/llvm-project/lldb/source/Host/common/
DNativeProcessProtocol.cpp708 ++m_stop_id; in SetState()
714 DoStopIDBumped(m_stop_id); in SetState()
724 return m_stop_id; in GetStopID()
/freebsd-12-stable/contrib/llvm-project/lldb/include/lldb/Host/common/
DNativeProcessProtocol.h395 uint32_t m_stop_id = 0; variable