Loading system/gd/hci/acl_manager/round_robin_scheduler.cc +1 −0 Original line number Diff line number Diff line Loading @@ -41,6 +41,7 @@ RoundRobinScheduler::~RoundRobinScheduler() { void RoundRobinScheduler::Register(ConnectionType connection_type, uint16_t handle, std::shared_ptr<acl_manager::AclConnection::Queue> queue) { ASSERT(acl_queue_handlers_.count(handle) == 0); acl_queue_handler acl_queue_handler = {connection_type, std::move(queue), false, 0}; acl_queue_handlers_.insert(std::pair<uint16_t, RoundRobinScheduler::acl_queue_handler>(handle, acl_queue_handler)); if (fragments_to_send_.size() == 0) { Loading Loading
system/gd/hci/acl_manager/round_robin_scheduler.cc +1 −0 Original line number Diff line number Diff line Loading @@ -41,6 +41,7 @@ RoundRobinScheduler::~RoundRobinScheduler() { void RoundRobinScheduler::Register(ConnectionType connection_type, uint16_t handle, std::shared_ptr<acl_manager::AclConnection::Queue> queue) { ASSERT(acl_queue_handlers_.count(handle) == 0); acl_queue_handler acl_queue_handler = {connection_type, std::move(queue), false, 0}; acl_queue_handlers_.insert(std::pair<uint16_t, RoundRobinScheduler::acl_queue_handler>(handle, acl_queue_handler)); if (fragments_to_send_.size() == 0) { Loading