Searched refs:next_to_dequeue_and_num_packets (Results 1 – 2 of 2) sorted by relevance
47 next_to_dequeue_and_num_packets.push(std::make_pair(cid, number_packets), priority); in OnPacketsReady()61 for (int i = 0; i < next_to_dequeue_and_num_packets.size(); i++) { in RemoveChannel()62 auto& channel_id_and_number_packets = next_to_dequeue_and_num_packets.front(); in RemoveChannel()64 next_to_dequeue_and_num_packets.push(channel_id_and_number_packets); in RemoveChannel()66 next_to_dequeue_and_num_packets.pop(); in RemoveChannel()68 if (next_to_dequeue_and_num_packets.empty() && link_queue_enqueue_registered_.exchange(false)) { in RemoveChannel()75 ASSERT(!next_to_dequeue_and_num_packets.empty()); in link_queue_enqueue_callback()76 auto& channel_id_and_number_packets = next_to_dequeue_and_num_packets.front(); in link_queue_enqueue_callback()80 next_to_dequeue_and_num_packets.pop(); in link_queue_enqueue_callback()85 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