Searched refs:queue_sp (Results 1 – 9 of 9) sorted by relevance
34 QueueImpl(const lldb::QueueSP &queue_sp) in QueueImpl() argument37 m_queue_wp = queue_sp; in QueueImpl()62 void SetQueue(const lldb::QueueSP &queue_sp) { in SetQueue() argument64 m_queue_wp = queue_sp; in SetQueue()69 lldb::QueueSP queue_sp = m_queue_wp.lock(); in GetQueueID() local70 if (queue_sp) { in GetQueueID()71 result = queue_sp->GetID(); in GetQueueID()78 lldb::QueueSP queue_sp = m_queue_wp.lock(); in GetIndexID() local79 if (queue_sp) { in GetIndexID()80 result = queue_sp->GetIndexID(); in GetIndexID()[all …]
94 QueueSP queue_sp; in GetQueue() local101 queue_sp = exe_ctx.GetThreadPtr()->GetQueue(); in GetQueue()102 if (queue_sp) { in GetQueue()103 sb_queue.SetQueue(queue_sp); in GetQueue()
470 QueueSP queue_sp; in GetQueueAtIndex() local477 queue_sp = process_sp->GetQueueList().GetQueueAtIndex(index); in GetQueueAtIndex()478 sb_queue.SetQueue(queue_sp); in GetQueueAtIndex()
40 void QueueList::AddQueue(QueueSP queue_sp) { in AddQueue() argument42 if (queue_sp.get()) { in AddQueue()43 m_queues.push_back(queue_sp); in AddQueue()49 for (QueueSP queue_sp : Queues()) { in FindQueueByID() local50 if (queue_sp->GetID() == qid) { in FindQueueByID()51 ret = queue_sp; in FindQueueByID()60 for (QueueSP queue_sp : Queues()) { in FindQueueByIndexID() local61 if (queue_sp->GetIndexID() == index_id) { in FindQueueByIndexID()62 ret = queue_sp; in FindQueueByIndexID()
17 QueueItem::QueueItem(QueueSP queue_sp, ProcessSP process_sp, in QueueItem() argument26 m_queue_wp = queue_sp; in QueueItem()46 QueueSP queue_sp = m_queue_wp.lock(); in GetExtendedBacktraceThread() local47 if (queue_sp) { in GetExtendedBacktraceThread()48 ProcessSP process_sp = queue_sp->GetProcess(); in GetExtendedBacktraceThread()
720 QueueSP queue_sp(new Queue(m_process->shared_from_this(), in PopulateQueueList() local724 queue_sp->SetKind(thread_sp->GetQueueKind()); in PopulateQueueList()725 queue_sp->SetLibdispatchQueueAddress( in PopulateQueueList()727 queue_list.AddQueue(queue_sp); in PopulateQueueList()729 queue_sp->SetKind( in PopulateQueueList()731 queue_sp->SetLibdispatchQueueAddress( in PopulateQueueList()733 queue_list.AddQueue(queue_sp); in PopulateQueueList()940 QueueSP queue_sp( in PopulateQueuesUsingLibBTR() local942 queue_sp->SetNumRunningWorkItems(running_work_items_count); in PopulateQueuesUsingLibBTR()943 queue_sp->SetNumPendingWorkItems(pending_work_items_count); in PopulateQueuesUsingLibBTR()[all …]
23 SBQueue(const QueueSP &queue_sp);61 void SetQueue(const lldb::QueueSP &queue_sp);
16 SBQueue (const lldb::QueueSP& queue_sp);
34 QueueItem(lldb::QueueSP queue_sp, lldb::ProcessSP process_sp,