Home
last modified time | relevance | path

Searched refs:queue_sp (Results 1 – 9 of 9) sorted by relevance

/external/llvm-project/lldb/source/API/
DSBQueue.cpp34 QueueImpl(const lldb::QueueSP &queue_sp) in QueueImpl() argument
37 m_queue_wp = queue_sp; in QueueImpl()
62 void SetQueue(const lldb::QueueSP &queue_sp) { in SetQueue() argument
64 m_queue_wp = queue_sp; in SetQueue()
69 lldb::QueueSP queue_sp = m_queue_wp.lock(); in GetQueueID() local
70 if (queue_sp) { in GetQueueID()
71 result = queue_sp->GetID(); in GetQueueID()
78 lldb::QueueSP queue_sp = m_queue_wp.lock(); in GetIndexID() local
79 if (queue_sp) { in GetIndexID()
80 result = queue_sp->GetIndexID(); in GetIndexID()
[all …]
DSBThread.cpp94 QueueSP queue_sp; in GetQueue() local
101 queue_sp = exe_ctx.GetThreadPtr()->GetQueue(); in GetQueue()
102 if (queue_sp) { in GetQueue()
103 sb_queue.SetQueue(queue_sp); in GetQueue()
DSBProcess.cpp470 QueueSP queue_sp; in GetQueueAtIndex() local
477 queue_sp = process_sp->GetQueueList().GetQueueAtIndex(index); in GetQueueAtIndex()
478 sb_queue.SetQueue(queue_sp); in GetQueueAtIndex()
/external/llvm-project/lldb/source/Target/
DQueueList.cpp40 void QueueList::AddQueue(QueueSP queue_sp) { in AddQueue() argument
42 if (queue_sp.get()) { in AddQueue()
43 m_queues.push_back(queue_sp); in AddQueue()
49 for (QueueSP queue_sp : Queues()) { in FindQueueByID() local
50 if (queue_sp->GetID() == qid) { in FindQueueByID()
51 ret = queue_sp; in FindQueueByID()
60 for (QueueSP queue_sp : Queues()) { in FindQueueByIndexID() local
61 if (queue_sp->GetIndexID() == index_id) { in FindQueueByIndexID()
62 ret = queue_sp; in FindQueueByIndexID()
DQueueItem.cpp17 QueueItem::QueueItem(QueueSP queue_sp, ProcessSP process_sp, in QueueItem() argument
26 m_queue_wp = queue_sp; in QueueItem()
46 QueueSP queue_sp = m_queue_wp.lock(); in GetExtendedBacktraceThread() local
47 if (queue_sp) { in GetExtendedBacktraceThread()
48 ProcessSP process_sp = queue_sp->GetProcess(); in GetExtendedBacktraceThread()
/external/llvm-project/lldb/source/Plugins/SystemRuntime/MacOSX/
DSystemRuntimeMacOSX.cpp720 QueueSP queue_sp(new Queue(m_process->shared_from_this(), in PopulateQueueList() local
724 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() local
942 queue_sp->SetNumRunningWorkItems(running_work_items_count); in PopulateQueuesUsingLibBTR()
943 queue_sp->SetNumPendingWorkItems(pending_work_items_count); in PopulateQueuesUsingLibBTR()
[all …]
/external/llvm-project/lldb/include/lldb/API/
DSBQueue.h23 SBQueue(const QueueSP &queue_sp);
61 void SetQueue(const lldb::QueueSP &queue_sp);
/external/llvm-project/lldb/bindings/interface/
DSBQueue.i16 SBQueue (const lldb::QueueSP& queue_sp);
/external/llvm-project/lldb/include/lldb/Target/
DQueueItem.h34 QueueItem(lldb::QueueSP queue_sp, lldb::ProcessSP process_sp,