Home
last modified time | relevance | path

Searched refs:m_pending_items (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/API/
H A DSBQueue.cpp40 m_pending_items = rhs.m_pending_items; in QueueImpl()
53 m_pending_items.clear(); in Clear()
119 m_pending_items.push_back(item); in FetchItems()
161 result = m_pending_items.size(); in GetNumPendingItems()
169 if (m_pending_items_fetched && idx < m_pending_items.size()) { in GetPendingItemAtIndex()
170 result.SetQueueItem(m_pending_items[idx]); in GetPendingItemAtIndex()
207 std::vector<lldb::QueueItemSP> m_pending_items; // items currently enqueued member in lldb_private::QueueImpl
/freebsd/contrib/llvm-project/lldb/source/Target/
H A DQueue.cpp22 m_pending_items(), m_dispatch_queue_t_addr(LLDB_INVALID_ADDRESS), in Queue()
78 if (m_pending_items.empty()) { in GetPendingItems()
84 return m_pending_items; in GetPendingItems()
/freebsd/contrib/llvm-project/lldb/include/lldb/Target/
H A DQueue.h126 m_pending_items.push_back(item); in PushPendingQueueItem()
142 std::vector<lldb::QueueItemSP> m_pending_items; variable