Searched refs:next_to_dequeue_and_num_packets (Results 1 – 2 of 2) sorted by relevance
49 next_to_dequeue_and_num_packets.push(std::make_pair(cid, number_packets), priority); in OnPacketsReady()63 for (size_t i = 0; i < next_to_dequeue_and_num_packets.size(); i++) { in RemoveChannel()64 auto& channel_id_and_number_packets = next_to_dequeue_and_num_packets.front(); in RemoveChannel()66 next_to_dequeue_and_num_packets.push(channel_id_and_number_packets); in RemoveChannel()68 next_to_dequeue_and_num_packets.pop(); in RemoveChannel()70 if (next_to_dequeue_and_num_packets.empty() && link_queue_enqueue_registered_.exchange(false)) { in RemoveChannel()78 !next_to_dequeue_and_num_packets.empty(), in link_queue_enqueue_callback()80 auto& channel_id_and_number_packets = next_to_dequeue_and_num_packets.front(); in link_queue_enqueue_callback()84 next_to_dequeue_and_num_packets.pop(); in link_queue_enqueue_callback()89 if (next_to_dequeue_and_num_packets.empty() && link_queue_enqueue_registered_.exchange(false)) { in link_queue_enqueue_callback()
52 common::MultiPriorityQueue<ChannelAndNumPackets, 2> next_to_dequeue_and_num_packets; variable