Home
last modified time | relevance | path

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

/system/bt/gd/hci/acl_manager/
Dround_robin_scheduler.cc46 if (fragments_to_send_.size() == 0) { in Register()
91 if (!fragments_to_send_.empty()) { in start_round_robin()
92 auto connection_type = fragments_to_send_.front().first; in start_round_robin()
147 fragments_to_send_.push( in buffer_packet()
154 fragments_to_send_.push( in buffer_packet()
162 ASSERT(fragments_to_send_.size() > 0); in buffer_packet()
165 acl_queue_handler->second.number_of_sent_packets_ += fragments_to_send_.size(); in buffer_packet()
188 ConnectionType connection_type = fragments_to_send_.front().first; in handle_enqueue_next_fragment()
197 auto raw_pointer = fragments_to_send_.front().second.release(); in handle_enqueue_next_fragment()
198 fragments_to_send_.pop(); in handle_enqueue_next_fragment()
[all …]
Dround_robin_scheduler.h66 …::MultiPriorityQueue<std::pair<ConnectionType, std::unique_ptr<AclBuilder>>, 2> fragments_to_send_; variable