Home
last modified time | relevance | path

Searched refs:GetQueueID (Results 1 – 13 of 13) sorted by relevance

/openbsd-src/gnu/llvm/lldb/bindings/interface/
H A DSBQueue.i39 GetQueueID;
42 GetQueueID () const;
H A DSBThread.i173 For example, with a libdispatch (aka Grand Central Dispatch) queue.") GetQueueID;
176 GetQueueID() const;
461 …queue_id = property(GetQueueID, None, doc='''A read only property that returns the dispatch queue …
/openbsd-src/gnu/llvm/lldb/source/API/
H A DSBQueue.cpp61 lldb::queue_id_t GetQueueID() const { in GetQueueID() function in lldb_private::QueueImpl
260 lldb::queue_id_t SBQueue::GetQueueID() const { in GetQueueID() function in SBQueue
263 return m_opaque_sp->GetQueueID(); in GetQueueID()
H A DSBThread.cpp428 lldb::queue_id_t SBThread::GetQueueID() const { in GetQueueID() function in SBThread
438 id = exe_ctx.GetThreadPtr()->GetQueueID(); in GetQueueID()
/openbsd-src/gnu/llvm/lldb/include/lldb/API/
H A DSBQueue.h39 lldb::queue_id_t GetQueueID() const;
H A DSBThread.h92 lldb::queue_id_t GetQueueID() const;
/openbsd-src/gnu/llvm/lldb/source/Plugins/Process/Utility/
H A DHistoryThread.h62 lldb::queue_id_t GetQueueID() override { return m_queue_id; } in GetQueueID() function
/openbsd-src/gnu/llvm/lldb/source/Target/
H A DQueue.cpp45 if (thread_sp->GetQueueID() == m_queue_id) { in GetThreads()
/openbsd-src/gnu/llvm/lldb/source/Plugins/Process/gdb-remote/
H A DThreadGDBRemote.cpp147 queue_id_t ThreadGDBRemote::GetQueueID() { in GetQueueID() function in ThreadGDBRemote
172 queue_id_t queue_id = GetQueueID(); in GetQueue()
H A DThreadGDBRemote.h44 lldb::queue_id_t GetQueueID() override;
/openbsd-src/gnu/llvm/lldb/source/Plugins/SystemRuntime/MacOSX/
H A DSystemRuntimeMacOSX.cpp759 if (thread_sp->GetQueueID() != LLDB_INVALID_QUEUE_ID) { in PopulateQueueList()
760 if (queue_list.FindQueueByID(thread_sp->GetQueueID()).get() == in PopulateQueueList()
763 thread_sp->GetQueueID(), in PopulateQueueList()
/openbsd-src/gnu/llvm/lldb/source/Plugins/Process/scripted/
H A DScriptedProcess.cpp506 m_process->shared_from_this(), thread_sp->GetQueueID(), queue_name); in UpdateQueueListIfNeeded()
/openbsd-src/gnu/llvm/lldb/include/lldb/Target/
H A DThread.h321 virtual lldb::queue_id_t GetQueueID() { return LLDB_INVALID_QUEUE_ID; } in GetQueueID() function