reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

gen/tools/lldb/scripts/LLDBWrapPython.cpp
46941   lldb::QueueSP *arg1 = 0 ;
tools/lldb/include/lldb/API/SBQueue.h
   23   SBQueue(const QueueSP &queue_sp);
   61   void SetQueue(const lldb::QueueSP &queue_sp);
tools/lldb/include/lldb/Target/QueueItem.h
   34   QueueItem(lldb::QueueSP queue_sp, lldb::ProcessSP process_sp,
tools/lldb/include/lldb/Target/QueueList.h
   48   lldb::QueueSP GetQueueAtIndex(uint32_t idx);
   50   typedef std::vector<lldb::QueueSP> collection;
   51   typedef LockingAdaptedIterable<collection, lldb::QueueSP, vector_adapter,
   69   void AddQueue(lldb::QueueSP queue);
   79   lldb::QueueSP FindQueueByID(lldb::queue_id_t qid);
   92   lldb::QueueSP FindQueueByIndexID(uint32_t index_id);
tools/lldb/include/lldb/Target/Thread.h
  355   virtual lldb::QueueSP GetQueue() { return lldb::QueueSP(); }
tools/lldb/source/API/SBProcess.cpp
  469   QueueSP queue_sp;
tools/lldb/source/API/SBQueue.cpp
   34   QueueImpl(const lldb::QueueSP &queue_sp)
   62   void SetQueue(const lldb::QueueSP &queue_sp) {
   69     lldb::QueueSP queue_sp = m_queue_wp.lock();
   78     lldb::QueueSP queue_sp = m_queue_wp.lock();
   87     lldb::QueueSP queue_sp = m_queue_wp.lock();
   96       lldb::QueueSP queue_sp = m_queue_wp.lock();
  116       QueueSP queue_sp = m_queue_wp.lock();
  149     QueueSP queue_sp = m_queue_wp.lock();
  165     QueueSP queue_sp = m_queue_wp.lock();
  185     QueueSP queue_sp = m_queue_wp.lock();
  193     QueueSP queue_sp = m_queue_wp.lock();
  202     QueueSP queue_sp = m_queue_wp.lock();
  224 SBQueue::SBQueue(const QueueSP &queue_sp)
  264 void SBQueue::SetQueue(const QueueSP &queue_sp) {
tools/lldb/source/API/SBThread.cpp
   95   QueueSP queue_sp;
tools/lldb/source/Plugins/Process/gdb-remote/ThreadGDBRemote.cpp
  163 QueueSP ThreadGDBRemote::GetQueue() {
  165   QueueSP queue;
tools/lldb/source/Plugins/Process/gdb-remote/ThreadGDBRemote.h
   44   lldb::QueueSP GetQueue() override;
tools/lldb/source/Plugins/SystemRuntime/MacOSX/SystemRuntimeMacOSX.cpp
  718           QueueSP queue_sp(new Queue(m_process->shared_from_this(),
  938       QueueSP queue_sp(
tools/lldb/source/Target/QueueItem.cpp
   17 QueueItem::QueueItem(QueueSP queue_sp, ProcessSP process_sp,
   46   QueueSP queue_sp = m_queue_wp.lock();
tools/lldb/source/Target/QueueList.cpp
   26 lldb::QueueSP QueueList::GetQueueAtIndex(uint32_t idx) {
   40 void QueueList::AddQueue(QueueSP queue_sp) {
   47 lldb::QueueSP QueueList::FindQueueByID(lldb::queue_id_t qid) {
   48   QueueSP ret;
   49   for (QueueSP queue_sp : Queues()) {
   58 lldb::QueueSP QueueList::FindQueueByIndexID(uint32_t index_id) {
   59   QueueSP ret;
   60   for (QueueSP queue_sp : Queues()) {