Home
last modified time | relevance | path

Searched refs:CLASSIC (Results 1 – 6 of 6) sorted by relevance

/packages/modules/Bluetooth/system/gd/hci/acl_manager/
Dround_robin_scheduler.cc62 if (acl_queue_handler.connection_type_ == ConnectionType::CLASSIC) { in Unregister()
100 … bool classic_buffer_full = acl_packet_credits_ == 0 && connection_type == ConnectionType::CLASSIC; in start_round_robin()
122 … acl_packet_credits_ == 0 && acl_queue_handler->second.connection_type_ == ConnectionType::CLASSIC; in start_round_robin()
154 size_t mtu = connection_type == ConnectionType::CLASSIC ? hci_mtu_ : le_hci_mtu_; in buffer_packet()
203 if (connection_type == ConnectionType::CLASSIC) { in handle_enqueue_next_fragment()
220 …bool classic_buffer_full = next_connection_type == ConnectionType::CLASSIC && acl_packet_credits_ … in handle_enqueue_next_fragment()
243 if (acl_queue_handler->second.connection_type_ == ConnectionType::CLASSIC) { in incoming_acl_credits()
Dround_robin_scheduler_test.cc181 …round_robin_scheduler_->Register(RoundRobinScheduler::ConnectionType::CLASSIC, handle, connection_… in TEST_F()
188 …round_robin_scheduler_->Register(RoundRobinScheduler::ConnectionType::CLASSIC, handle, connection_… in TEST_F()
211 …round_robin_scheduler_->Register(RoundRobinScheduler::ConnectionType::CLASSIC, handle, connection_… in TEST_F()
235 …round_robin_scheduler_->Register(RoundRobinScheduler::ConnectionType::CLASSIC, handle, connection_… in TEST_F()
287 …round_robin_scheduler_->Register(RoundRobinScheduler::ConnectionType::CLASSIC, handle1, connection… in TEST_F()
288 …round_robin_scheduler_->Register(RoundRobinScheduler::ConnectionType::CLASSIC, handle2, connection… in TEST_F()
335 …round_robin_scheduler_->Register(RoundRobinScheduler::ConnectionType::CLASSIC, handle, connection_… in TEST_F()
381 …round_robin_scheduler_->Register(RoundRobinScheduler::ConnectionType::CLASSIC, handle, connection_… in TEST_F()
Dround_robin_scheduler.h39 enum ConnectionType { CLASSIC, LE }; enumerator
Dclassic_impl.h351 round_robin_scheduler_->Register(RoundRobinScheduler::ConnectionType::CLASSIC, handle, queue); in create_and_announce_connection()
/packages/apps/Settings/src/com/android/settings/bluetooth/
DDeviceListPreferenceFragment.kt61 CLASSIC, LE
64 private var scanType = ScanType.CLASSIC
101 this.scanType = ScanType.CLASSIC in setFilter()
209 || (scanType == ScanType.CLASSIC && filter.matches(cachedDevice.device) == true)) { in addDevice()
/packages/modules/Bluetooth/android/pandora/server/src/
DSecurity.kt135 check(request.getLevelCase() == SecureRequest.LevelCase.CLASSIC) in <lambda>()