Home
last modified time | relevance | path

Searched refs:BR_EDR (Results 1 – 15 of 15) sorted by relevance

/packages/modules/Bluetooth/system/gd/storage/
Dconfig_cache_test.cc294 Optional(StrEq(std::to_string(bluetooth::hci::DeviceType::BR_EDR)))); in TEST()
306 std::to_string(bluetooth::hci::DeviceType::BR_EDR)); in TEST()
312 std::to_string(bluetooth::hci::DeviceType::BR_EDR)); in TEST()
322 Optional(StrEq(std::to_string(bluetooth::hci::DeviceType::BR_EDR)))); in TEST()
334 std::to_string(bluetooth::hci::DeviceType::BR_EDR)); in TEST()
340 std::to_string(bluetooth::hci::DeviceType::BR_EDR)); in TEST()
363 std::to_string(bluetooth::hci::DeviceType::BR_EDR)); in TEST()
369 std::to_string(bluetooth::hci::DeviceType::BR_EDR)); in TEST()
391 std::to_string(bluetooth::hci::DeviceType::BR_EDR)); in TEST()
Ddevice_test.cc132 mutation.Add(device.SetDeviceType(DeviceType::BR_EDR)); in TEST()
135 ASSERT_THAT(device.GetDeviceType(), Optional(Eq(DeviceType::BR_EDR))); in TEST()
156 mutation.Add(device.SetDeviceType(DeviceType::BR_EDR)); in TEST()
159 ASSERT_THAT(device.GetDeviceType(), Optional(Eq(DeviceType::BR_EDR))); in TEST()
Ddevice.cc110 device_type == DeviceType::BR_EDR || device_type == DeviceType::DUAL, in Classic()
Dconfig_cache.cc467 hci::DeviceType device_type = hci::DeviceType::BR_EDR; in FixDeviceTypeInconsistencyInSection()
479 device_type = hci::DeviceType::BR_EDR; in FixDeviceTypeInconsistencyInSection()
/packages/modules/Bluetooth/system/gd/security/record/
Dsecurity_record_storage.cc44 if (*device.GetDeviceType() == hci::DeviceType::BR_EDR) { in SetLeData()
118 mutation.Add(device.SetDeviceType(hci::DeviceType::BR_EDR)); in SaveSecurityRecords()
139 …auto address_type = (device.GetDeviceType() == hci::DeviceType::BR_EDR) ? hci::AddressType::PUBLIC… in LoadSecurityRecords()
147 if (device.GetDeviceType() != hci::DeviceType::BR_EDR) { in LoadSecurityRecords()
/packages/modules/Bluetooth/tools/rootcanal/include/
Dphy.h25 BR_EDR, enumerator
/packages/modules/Bluetooth/tools/rootcanal/desktop/
Dtest_environment.cc183 Phy::Type::BR_EDR); in initialize()
210 auto phy_type = Phy::Type::BR_EDR; in SetUpLinkLayerServer()
/packages/modules/Bluetooth/tools/rootcanal/model/controller/
Dacl_connection_handler.cc154 AddressWithType(), Phy::Type::BR_EDR, in CreateConnection()
216 connection.GetPhyType() == Phy::Type::BR_EDR) { in GetAclConnectionHandle()
281 return Phy::Type::BR_EDR; in GetPhyType()
Dacl_connection.h89 Phy::Type type_{Phy::Type::BR_EDR};
Dlink_layer_controller.cc2142 send_to_remote_(shared_packet, Phy::Type::BR_EDR, tx_power); in SendLinkLayerPacket()
2240 case Phy::Type::BR_EDR: in SendAclToRemote()
2715 auto is_br_edr = connections_.GetPhyType(handle) == Phy::Type::BR_EDR; in IncomingDisconnectPacket()
5528 auto is_br_edr = connections_.GetPhyType(handle) == Phy::Type::BR_EDR; in Disconnect()
/packages/modules/Bluetooth/tools/rootcanal/model/setup/
Dtest_command_handler.cc135 Phy::Type phy_type = Phy::Type::BR_EDR; in AddRemote()
170 model_.AddPhy(Phy::Type::BR_EDR); in AddPhy()
Dphy_layer.cc81 case Phy::Type::BR_EDR: in ToString()
Dtest_model.cc179 type == Phy::Type::BR_EDR ? "BR_EDR" : "LOW_ENERGY"); in AddLinkLayerConnection()
/packages/modules/Bluetooth/tools/rootcanal/hal/
Dbluetooth_hci.cc178 size_t classic_phy_index = test_model_.AddPhy(rootcanal::Phy::Type::BR_EDR); in initialize_impl()
208 auto phy_type = Phy::Type::BR_EDR; in initialize_impl()
/packages/modules/Bluetooth/system/gd/hci/
Denum_helper.h28 enum DeviceType { UNKNOWN = 0, BR_EDR = 1, LE = 2, DUAL = 3 }; enumerator