Lines Matching refs:SBQueue
235 SBQueue::SBQueue() : m_opaque_sp(new QueueImpl()) {} in SBQueue() function in SBQueue
237 SBQueue::SBQueue(const QueueSP &queue_sp) in SBQueue() function in SBQueue
240 SBQueue::SBQueue(const SBQueue &rhs) { in SBQueue() function in SBQueue
247 const lldb::SBQueue &SBQueue::operator=(const lldb::SBQueue &rhs) { in operator =()
252 SBQueue::~SBQueue() {} in ~SBQueue()
254 bool SBQueue::IsValid() const { in IsValid()
263 void SBQueue::Clear() { in Clear()
270 void SBQueue::SetQueue(const QueueSP &queue_sp) { in SetQueue()
274 lldb::queue_id_t SBQueue::GetQueueID() const { in GetQueueID()
283 uint32_t SBQueue::GetIndexID() const { in GetIndexID()
292 const char *SBQueue::GetName() const { in GetName()
301 uint32_t SBQueue::GetNumThreads() { in GetNumThreads()
310 SBThread SBQueue::GetThreadAtIndex(uint32_t idx) { in GetThreadAtIndex()
319 uint32_t SBQueue::GetNumPendingItems() { in GetNumPendingItems()
328 SBQueueItem SBQueue::GetPendingItemAtIndex(uint32_t idx) { in GetPendingItemAtIndex()
336 uint32_t SBQueue::GetNumRunningItems() { in GetNumRunningItems()
345 SBProcess SBQueue::GetProcess() { return m_opaque_sp->GetProcess(); } in GetProcess()
347 lldb::QueueKind SBQueue::GetKind() { return m_opaque_sp->GetKind(); } in GetKind()