Lines Matching refs:outboundQueue

3426     const bool wasEmpty = connection->outboundQueue.empty();  in enqueueDispatchEntryAndStartDispatchCycleLocked()
3431 if (wasEmpty && !connection->outboundQueue.empty()) { in enqueueDispatchEntryAndStartDispatchCycleLocked()
3591 connection->outboundQueue.emplace_back(std::move(cancelDispatchEntry)); in enqueueDispatchEntryLocked()
3635 connection->outboundQueue.emplace_back(std::move(dispatchEntry)); in enqueueDispatchEntryLocked()
3793 while (connection->status == Connection::Status::NORMAL && !connection->outboundQueue.empty()) { in startDispatchCycleLocked()
3794 std::unique_ptr<DispatchEntry>& dispatchEntry = connection->outboundQueue.front(); in startDispatchCycleLocked()
3920 connection->outboundQueue.erase(connection->outboundQueue.begin()); in startDispatchCycleLocked()
3996 drainDispatchQueue(connection->outboundQueue); in abortBrokenDispatchCycleLocked()
4205 const bool wasEmpty = connection->outboundQueue.empty(); in synthesizeCancelationEventsForConnectionLocked()
4291 if (wasEmpty && !connection->outboundQueue.empty()) { in synthesizeCancelationEventsForConnectionLocked()
4323 const bool wasEmpty = connection->outboundQueue.empty(); in synthesizePointerDownEventsForConnectionLocked()
4376 if (wasEmpty && !connection->outboundQueue.empty()) { in synthesizePointerDownEventsForConnectionLocked()
6024 if (!connection->outboundQueue.empty()) { in dumpDispatchStateLocked()
6026 connection->outboundQueue.size()); in dumpDispatchStateLocked()
6027 dump += dumpQueue(connection->outboundQueue, currentTime); in dumpDispatchStateLocked()
6841 ATRACE_INT(counterName, connection.outboundQueue.size()); in traceOutboundQueueLength()