Home
last modified time | relevance | path

Searched refs:m_ReadableList (Results 1 – 4 of 4) sorted by relevance

/external/armnn/profiling/client/src/
DFileOnlyProfilingConnection.cpp235 m_ReadableList.push(std::move(packet)); in ForwardPacketToHandlers()
256 [&] { return !m_ReadableList.empty(); }); in ServiceLocalHandlers()
264 [&] { return !m_ReadableList.empty(); }); in ServiceLocalHandlers()
269 if (!m_ReadableList.empty()) in ServiceLocalHandlers()
271 returnedPacket = std::move(m_ReadableList.front()); in ServiceLocalHandlers()
272 m_ReadableList.pop(); in ServiceLocalHandlers()
294 size_t initialSize = m_ReadableList.size(); in ClearReadableList()
297 m_ReadableList.pop(); in ClearReadableList()
DBufferManager.cpp77 m_ReadableList.push(std::move(packetBuffer)); in Commit()
134 std::queue<IPacketBufferPtr>().swap(m_ReadableList); in Reset()
144 if (!m_ReadableList.empty()) in GetReadableBuffer()
146 IPacketBufferPtr buffer = std::move(m_ReadableList.front()); in GetReadableBuffer()
147 m_ReadableList.pop(); in GetReadableBuffer()
DBufferManager.hpp64 std::queue<IPacketBufferPtr> m_ReadableList; member in arm::pipe::BufferManager
DFileOnlyProfilingConnection.hpp127 std::queue<arm::pipe::Packet> m_ReadableList; member in arm::pipe::FileOnlyProfilingConnection