Lines Matching refs:m_queue_wp
30 QueueImpl() : m_queue_wp(), m_threads(), m_pending_items() {} in QueueImpl()
33 : m_queue_wp(), m_threads(), m_thread_list_fetched(false), in QueueImpl()
35 m_queue_wp = queue_sp; in QueueImpl()
41 m_queue_wp = rhs.m_queue_wp; in QueueImpl()
50 bool IsValid() { return m_queue_wp.lock() != nullptr; } in IsValid()
53 m_queue_wp.reset(); in Clear()
62 m_queue_wp = queue_sp; in SetQueue()
67 lldb::QueueSP queue_sp = m_queue_wp.lock(); in GetQueueID()
76 lldb::QueueSP queue_sp = m_queue_wp.lock(); in GetIndexID()
85 lldb::QueueSP queue_sp = m_queue_wp.lock(); in GetName()
94 lldb::QueueSP queue_sp = m_queue_wp.lock(); in FetchThreads()
114 QueueSP queue_sp = m_queue_wp.lock(); in FetchItems()
147 QueueSP queue_sp = m_queue_wp.lock(); in GetThreadAtIndex()
163 QueueSP queue_sp = m_queue_wp.lock(); in GetNumPendingItems()
183 QueueSP queue_sp = m_queue_wp.lock(); in GetNumRunningItems()
191 QueueSP queue_sp = m_queue_wp.lock(); in GetProcess()
200 QueueSP queue_sp = m_queue_wp.lock(); in GetKind()
208 lldb::QueueWP m_queue_wp; member in lldb_private::QueueImpl