Searched refs:m_stop_id (Results 1 - 22 of 22) sorted by relevance

/freebsd-current/contrib/llvm-project/lldb/include/lldb/Core/
H A DValueObjectUpdater.h27 uint32_t m_stop_id = UINT32_MAX; member in class:lldb_private::ValueObjectUpdater
/freebsd-current/contrib/llvm-project/lldb/source/Core/
H A DValueObjectUpdater.cpp28 if (current_stop_id == m_stop_id)
31 m_stop_id = current_stop_id;
H A DIOHandlerCursesGUI.cpp5134 if (m_stop_id == process_sp->GetStopID() &&
5142 m_stop_id = process_sp->GetStopID();
5182 uint32_t m_stop_id = UINT32_MAX; member in class:ThreadTreeDelegate
5233 if (m_stop_id == stop_id)
5236 m_stop_id = stop_id;
5299 uint32_t m_stop_id = UINT32_MAX; member in class:ThreadsTreeDelegate
6863 const bool stop_id_changed = stop_id != m_stop_id;
6865 m_stop_id = stop_id;
7556 uint32_t m_stop_id = 0; member in class:SourceFileWindowDelegate
/freebsd-current/contrib/llvm-project/lldb/source/Plugins/DynamicLoader/FreeBSD-Kernel/
H A DDynamicLoaderFreeBSDKernel.h70 m_stop_id = UINT32_MAX;
100 void SetStopID(uint32_t stop_id) { m_stop_id = stop_id; }
102 uint32_t GetStopID() { return m_stop_id; }
104 bool IsLoaded() const { return m_stop_id != UINT32_MAX; };
122 uint32_t m_stop_id = UINT32_MAX; member in class:DynamicLoaderFreeBSDKernel::KModImageInfo
H A DDynamicLoaderFreeBSDKernel.cpp390 m_stop_id = process->GetStopID();
460 m_stop_id = process->GetStopID();
497 m_stop_id = process->GetStopID();
/freebsd-current/contrib/llvm-project/lldb/include/lldb/Target/
H A DQueueList.h100 m_stop_id; ///< The process stop ID that this queue list is valid for. member in class:lldb_private::QueueList
H A DRegisterContext.h225 uint32_t GetStopID() const { return m_stop_id; }
227 void SetStopID(uint32_t stop_id) { m_stop_id = stop_id; }
247 uint32_t m_stop_id; // The stop ID that any data in this context is valid for member in class:lldb_private::RegisterContext
H A DQueueItem.h112 void SetStopID(uint32_t stop_id) { m_stop_id = stop_id; }
155 uint32_t m_stop_id; // indicates when this backtrace was recorded in time member in class:lldb_private::QueueItem
H A DThreadList.h148 m_stop_id; ///< The process stop ID that this thread list is valid for. member in class:lldb_private::ThreadList
H A DStopInfo.h176 uint32_t m_stop_id; // The process stop ID for which this stop info is valid member in class:lldb_private::StopInfo
H A DProcess.h216 : m_stop_id(rhs.m_stop_id), m_memory_id(rhs.m_memory_id) {}
220 m_stop_id = rhs.m_stop_id;
229 const uint32_t prev_stop_id = m_stop_id++;
247 uint32_t GetStopID() const { return m_stop_id; }
260 return m_stop_id == compare.m_stop_id;
263 void SetInvalid() { m_stop_id = UINT32_MAX; }
265 bool IsValid() const { return m_stop_id !
312 uint32_t m_stop_id = 0; member in class:lldb_private::ProcessModID
[all...]
H A DTrace.h538 uint32_t m_stop_id = LLDB_INVALID_STOP_ID; member in class:lldb_private::Trace
/freebsd-current/contrib/llvm-project/lldb/source/Target/
H A DQueueItem.cpp24 m_target_queue_id(LLDB_INVALID_QUEUE_ID), m_stop_id(0), m_backtrace(),
75 return m_stop_id;
H A DQueueList.cpp17 : m_process(process), m_stop_id(0), m_queues(), m_mutex() {}
H A DThreadList.cpp27 : ThreadCollection(), m_process(process), m_stop_id(0),
31 : ThreadCollection(), m_process(rhs.m_process), m_stop_id(rhs.m_stop_id),
47 m_stop_id = rhs.m_stop_id;
79 uint32_t ThreadList::GetStopID() const { return m_stop_id; }
81 void ThreadList::SetStopID(uint32_t stop_id) { m_stop_id = stop_id; }
473 m_stop_id = 0;
744 m_stop_id = rhs.m_stop_id;
[all...]
H A DTrace.cpp288 if (new_stop_id == m_stop_id)
294 m_stop_id = new_stop_id;
371 return m_stop_id;
H A DStopInfo.cpp35 m_stop_id(thread.GetProcess()->GetStopID()),
43 return thread_sp->GetProcess()->GetStopID() == m_stop_id;
50 m_stop_id = thread_sp->GetProcess()->GetStopID();
H A DRegisterContext.cpp28 m_stop_id(thread.GetProcess()->GetStopID()) {}
/freebsd-current/contrib/llvm-project/lldb/source/Plugins/Process/Utility/
H A DRegisterContextThreadMemory.cpp23 m_reg_ctx_sp(), m_register_data_addr(register_data_addr), m_stop_id(0) {}
34 if (m_stop_id != stop_id) {
35 m_stop_id = stop_id;
H A DRegisterContextThreadMemory.h92 uint32_t m_stop_id; member in class:lldb_private::RegisterContextThreadMemory
/freebsd-current/contrib/llvm-project/lldb/source/Host/common/
H A DNativeProcessProtocol.cpp743 ++m_stop_id;
749 DoStopIDBumped(m_stop_id);
759 return m_stop_id;
/freebsd-current/contrib/llvm-project/lldb/include/lldb/Host/common/
H A DNativeProcessProtocol.h439 uint32_t m_stop_id = 0; member in class:lldb_private::NativeProcessProtocol

Completed in 316 milliseconds