Home
last modified time | relevance | path

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

/llvm-project-15.0.7/lldb/source/API/
H A DSBQueue.cpp32 QueueImpl(const lldb::QueueSP &queue_sp) { m_queue_wp = queue_sp; } in QueueImpl() argument
58 m_queue_wp = queue_sp; in SetQueue()
64 if (queue_sp) { in GetQueueID()
65 result = queue_sp->GetID(); in GetQueueID()
73 if (queue_sp) { in GetIndexID()
82 if (queue_sp.get()) { in GetName()
91 if (queue_sp) { in FetchThreads()
111 if (queue_sp) { in FetchItems()
180 if (queue_sp) in GetNumRunningItems()
188 if (queue_sp) { in GetProcess()
[all …]
H A DSBThread.cpp92 QueueSP queue_sp; in GetQueue() local
99 queue_sp = exe_ctx.GetThreadPtr()->GetQueue(); in GetQueue()
100 if (queue_sp) { in GetQueue()
101 sb_queue.SetQueue(queue_sp); in GetQueue()
H A DSBProcess.cpp423 QueueSP queue_sp; in GetQueueAtIndex() local
430 queue_sp = process_sp->GetQueueList().GetQueueAtIndex(index); in GetQueueAtIndex()
431 sb_queue.SetQueue(queue_sp); in GetQueueAtIndex()
/llvm-project-15.0.7/lldb/source/Target/
H A 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()
H A 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()
/llvm-project-15.0.7/lldb/source/Plugins/SystemRuntime/MacOSX/
H A DSystemRuntimeMacOSX.cpp725 queue_sp->SetKind(thread_sp->GetQueueKind()); in PopulateQueueList()
726 queue_sp->SetLibdispatchQueueAddress( in PopulateQueueList()
728 queue_list.AddQueue(queue_sp); in PopulateQueueList()
730 queue_sp->SetKind( in PopulateQueueList()
732 queue_sp->SetLibdispatchQueueAddress( in PopulateQueueList()
734 queue_list.AddQueue(queue_sp); in PopulateQueueList()
941 QueueSP queue_sp( in PopulateQueuesUsingLibBTR() local
943 queue_sp->SetNumRunningWorkItems(running_work_items_count); in PopulateQueuesUsingLibBTR()
945 queue_sp->SetLibdispatchQueueAddress(queue); in PopulateQueuesUsingLibBTR()
946 queue_sp->SetKind(GetQueueKind(queue)); in PopulateQueuesUsingLibBTR()
[all …]
/llvm-project-15.0.7/lldb/include/lldb/API/
H A DSBQueue.h23 SBQueue(const QueueSP &queue_sp);
61 void SetQueue(const lldb::QueueSP &queue_sp);
/llvm-project-15.0.7/lldb/bindings/interface/
H A DSBQueue.i19 SBQueue (const lldb::QueueSP& queue_sp);
/llvm-project-15.0.7/lldb/include/lldb/Target/
H A DQueueItem.h34 QueueItem(lldb::QueueSP queue_sp, lldb::ProcessSP process_sp,