Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/lldb/source/API/
H A DSBQueue.cpp32 QueueImpl(const lldb::QueueSP &queue_sp) { m_queue_wp = queue_sp; } in QueueImpl() argument
56 void SetQueue(const lldb::QueueSP &queue_sp) { in SetQueue() argument
58 m_queue_wp = queue_sp; in SetQueue()
63 lldb::QueueSP queue_sp = m_queue_wp.lock(); in GetQueueID() local
64 if (queue_sp) { in GetQueueID()
65 result = queue_sp->GetID(); in GetQueueID()
72 lldb::QueueSP queue_sp = m_queue_wp.lock(); in GetIndexID() local
73 if (queue_sp) { in GetIndexID()
74 result = queue_sp->GetIndexID(); in GetIndexID()
81 lldb::QueueSP queue_sp = m_queue_wp.lock(); in GetName() local
[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()
/openbsd-src/gnu/llvm/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()
/openbsd-src/gnu/llvm/lldb/source/Plugins/SystemRuntime/MacOSX/
H A DSystemRuntimeMacOSX.cpp762 QueueSP queue_sp(new Queue(m_process->shared_from_this(), in PopulateQueueList() local
766 queue_sp->SetKind(thread_sp->GetQueueKind()); in PopulateQueueList()
767 queue_sp->SetLibdispatchQueueAddress( in PopulateQueueList()
769 queue_list.AddQueue(queue_sp); in PopulateQueueList()
771 queue_sp->SetKind( in PopulateQueueList()
773 queue_sp->SetLibdispatchQueueAddress( in PopulateQueueList()
775 queue_list.AddQueue(queue_sp); in PopulateQueueList()
982 QueueSP queue_sp( in PopulateQueuesUsingLibBTR() local
984 queue_sp->SetNumRunningWorkItems(running_work_items_count); in PopulateQueuesUsingLibBTR()
985 queue_sp->SetNumPendingWorkItems(pending_work_items_count); in PopulateQueuesUsingLibBTR()
[all …]
/openbsd-src/gnu/llvm/lldb/include/lldb/API/
H A DSBQueue.h23 SBQueue(const QueueSP &queue_sp);
61 void SetQueue(const lldb::QueueSP &queue_sp);
/openbsd-src/gnu/llvm/lldb/bindings/interface/
H A DSBQueue.i19 SBQueue (const lldb::QueueSP& queue_sp);
/openbsd-src/gnu/llvm/lldb/include/lldb/Target/
H A DQueueItem.h34 QueueItem(lldb::QueueSP queue_sp, lldb::ProcessSP process_sp,
/openbsd-src/gnu/llvm/lldb/source/Plugins/Process/scripted/
H A DScriptedProcess.cpp505 QueueSP queue_sp = std::make_shared<Queue>( in UpdateQueueListIfNeeded() local
507 m_queue_list.AddQueue(queue_sp); in UpdateQueueListIfNeeded()