Home
last modified time | relevance | path

Searched refs:phy (Results 1 – 18 of 18) sorted by relevance

/system/bt/vendor_libs/test_vendor_lib/model/devices/
Ddevice.cc33 void Device::RegisterPhyLayer(std::shared_ptr<PhyLayer> phy) { in RegisterPhyLayer() argument
34 phy_layers_[phy->GetType()].push_back(phy); in RegisterPhyLayer()
37 void Device::UnregisterPhyLayer(std::shared_ptr<PhyLayer> phy) { in UnregisterPhyLayer() argument
41 if (phy == phy_list[i]) { in UnregisterPhyLayer()
63 for (auto phy : phy_list) { in SendLinkLayerPacket() local
64 phy->Send(to_send); in SendLinkLayerPacket()
Dbeacon.cc74 for (std::shared_ptr<PhyLayer> phy : le_phys) { in TimerTick()
75 phy->Send(to_send); in TimerTick()
88 for (auto phy : le_phys) { in IncomingPacket() local
89 phy->Send(to_send); in IncomingPacket()
Ddevice.h72 void RegisterPhyLayer(std::shared_ptr<PhyLayer> phy);
74 void UnregisterPhyLayer(std::shared_ptr<PhyLayer> phy);
Dloopback.cc93 for (auto phy : le_phys) { in IncomingPacket() local
95 phy->Send(to_send); in IncomingPacket()
/system/bt/vendor_libs/test_vendor_lib/model/setup/
Dtest_model.cc175 for (size_t phy = 0; phy < 2 && phy < phys_.size(); phy++) { in IncomingHciConnection() local
176 AddDeviceToPhy(index, phy); in IncomingHciConnection()
190 for (size_t phy = 0; phy < phys_.size(); phy++) { in List() local
191 list_string_ += " " + std::to_string(phy) + ":"; in List()
192 list_string_ += phys_[phy]->ToString() + " \r\n"; in List()
Dphy_layer_factory.cc60 for (const auto phy : phy_layers_) { in Send() local
61 if (id != phy->GetId()) { in Send()
62 phy->Receive(packet_view); in Send()
68 for (auto phy : phy_layers_) { in TimerTick() local
69 phy->TimerTick(); in TimerTick()
Dtest_model.h50 size_t AddPhy(std::shared_ptr<PhyLayerFactory> phy);
/system/bt/stack/btm/
Dbtm_ble_bgconn.cc40 uint8_t phy);
350 uint8_t phy = PHY_LE_1M; in btm_ble_start_auto_conn() local
351 if (controller_get_interface()->supports_ble_2m_phy()) phy |= PHY_LE_2M; in btm_ble_start_auto_conn()
352 if (controller_get_interface()->supports_ble_coded_phy()) phy |= PHY_LE_CODED; in btm_ble_start_auto_conn()
390 phy); in btm_ble_start_auto_conn()
/system/bt/include/hardware/
Dble_scanner.h122 RawAddress address, uint8_t phy, uint16_t interval)>;
/system/bt/device/src/
Dcontroller.cc525 uint8_t phy = PHY_LE_1M; in get_le_all_initiating_phys() local
529 return phy; in get_le_all_initiating_phys()
/system/bt/stack/hcic/
Dhciblecmds.cc692 void btsnd_hcic_ble_enh_rx_test(uint8_t rx_chan, uint8_t phy, in btsnd_hcic_ble_enh_rx_test() argument
704 UINT8_TO_STREAM(pp, phy); in btsnd_hcic_ble_enh_rx_test()
711 uint8_t payload, uint8_t phy) { in btsnd_hcic_ble_enh_tx_test() argument
723 UINT8_TO_STREAM(pp, phy); in btsnd_hcic_ble_enh_tx_test()
/system/bt/bta/gatt/
Dbta_gattc_api.cc123 uint8_t phy = controller_get_interface()->get_le_all_initiating_phys(); in BTA_GATTC_Open() local
125 phy); in BTA_GATTC_Open()
/system/bt/binder/android/bluetooth/
DIBluetoothGatt.aidl77 …f, in String address, in boolean isDirect, in int transport, in boolean opportunistic, in int phy); in clientConnect() argument
/system/bt/service/hal/
Dfake_bluetooth_gatt_interface.cc45 int phy) { in FakeConnect() argument
/system/bt/stack/gatt/
Dgatt_api.cc1096 uint8_t phy = controller_get_interface()->get_le_all_initiating_phys(); in GATT_Connect() local
1098 phy); in GATT_Connect()
/system/bt/stack/l2cap/
Dl2c_api.cc1657 uint8_t phy = controller_get_interface()->get_le_all_initiating_phys(); in L2CA_ConnectFixedChnl() local
1658 return L2CA_ConnectFixedChnl(fixed_cid, rem_bda, phy); in L2CA_ConnectFixedChnl()
Dl2c_utils.cc2113 uint8_t phy = controller_get_interface()->get_le_all_initiating_phys(); in l2cu_create_conn_le() local
2114 return l2cu_create_conn_le(p_lcb, phy); in l2cu_create_conn_le()
/system/bt/vendor_libs/test_vendor_lib/model/controller/
Ddual_mode_controller.cc85 for (auto phy : phy_list) { in SendLinkLayerPacket() local
86 phy->Send(to_send); in SendLinkLayerPacket()