Home
last modified time | relevance | path

Searched refs:next_to_dequeue_and_num_packets (Results 1 – 2 of 2) sorted by relevance

/packages/modules/Bluetooth/system/gd/l2cap/internal/
Dscheduler_fifo.cc49 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()
Dscheduler_fifo.h52 common::MultiPriorityQueue<ChannelAndNumPackets, 2> next_to_dequeue_and_num_packets; variable