Home
last modified time | relevance | path

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

/system/bt/vendor_libs/test_vendor_lib/model/devices/
Ddevice.cc29 void Device::RegisterPhyLayer(std::shared_ptr<PhyLayer> phy) { in RegisterPhyLayer() argument
30 phy_layers_.push_back(phy); in RegisterPhyLayer()
34 for (auto phy : phy_layers_) { in UnregisterPhyLayers() local
35 if (phy != nullptr) { in UnregisterPhyLayers()
36 phy->Unregister(); in UnregisterPhyLayers()
43 for (auto& phy : phy_layers_) { in UnregisterPhyLayer() local
44 if (phy != nullptr && phy->IsFactoryId(factory_id) && in UnregisterPhyLayer()
45 phy->GetType() == phy_type) { in UnregisterPhyLayer()
46 phy->Unregister(); in UnregisterPhyLayer()
47 phy.reset(); in UnregisterPhyLayer()
[all …]
Ddevice.h74 void RegisterPhyLayer(std::shared_ptr<PhyLayer> phy);
/system/bt/vendor_libs/test_vendor_lib/model/setup/
Dphy_layer_factory.cc44 for (auto phy : phy_layers_) { in UnregisterPhyLayer() local
45 if (phy->GetId() == id) { in UnregisterPhyLayer()
46 phy_layers_.remove(phy); in UnregisterPhyLayer()
80 for (const auto& phy : phy_layers_) { in Send() local
81 if (id != phy->GetId()) { in Send()
82 phy->Receive(packet); in Send()
88 for (auto& phy : phy_layers_) { in TimerTick() local
89 phy->TimerTick(); in TimerTick()
105 for (auto& phy : phy_layers_) { in ToString() local
106 factory << phy->GetDeviceId(); in ToString()
/system/bt/stack/test/common/
Dmock_hcic_layer.cc84 uint8_t rtn, uint8_t phy, uint8_t packing, in btsnd_hcic_create_big() argument
94 .phy = phy, in btsnd_hcic_create_big()
/system/bt/stack/btm/
Dbtm_ble_bgconn.cc46 uint8_t phy);
342 uint8_t phy = PHY_LE_1M; in btm_ble_start_auto_conn() local
343 if (controller_get_interface()->supports_ble_2m_phy()) phy |= PHY_LE_2M; in btm_ble_start_auto_conn()
344 if (controller_get_interface()->supports_ble_coded_phy()) phy |= PHY_LE_CODED; in btm_ble_start_auto_conn()
384 phy); in btm_ble_start_auto_conn()
Dbtm_iso_impl.h503 STREAM_TO_UINT8(evt.phy, data); in process_create_big_cmpl_pkt()
568 big_params.rtn, big_params.phy, big_params.packing, big_params.framing, in create_big()
/system/bt/stack/include/
Dbtm_iso_api_types.h120 uint8_t phy; member
132 uint8_t phy; member
Dhcimsgs.h748 uint8_t rtn, uint8_t phy, uint8_t packing,
/system/bt/main/shim/
Dcontroller.cc67 uint8_t phy; member
107 data_.phy = kPhyLe1M; in start_up()
306 static uint8_t get_le_all_initiating_phys() { return data_.phy; } in get_le_all_initiating_phys()
/system/bt/test/mock/
Dmock_hcic_hciblecmds.cc98 void btsnd_hcic_ble_enh_rx_test(uint8_t rx_chan, uint8_t phy, in btsnd_hcic_ble_enh_rx_test() argument
103 uint8_t payload, uint8_t phy) { in btsnd_hcic_ble_enh_tx_test() argument
277 uint8_t rtn, uint8_t phy, uint8_t packing, in btsnd_hcic_create_big() argument
Dmock_device_controller.cc362 uint8_t phy = PHY_LE_1M; in get_le_all_initiating_phys() local
363 return phy; in get_le_all_initiating_phys()
/system/bt/include/hardware/
Dble_scanner.h165 RawAddress address, uint8_t phy, uint16_t interval)>;
/system/bt/bta/gatt/
Dbta_gattc_api.cc122 uint8_t phy = controller_get_interface()->get_le_all_initiating_phys(); in BTA_GATTC_Open() local
124 opportunistic, phy); in BTA_GATTC_Open()
/system/bt/stack/hcic/
Dhciblecmds.cc762 void btsnd_hcic_ble_enh_rx_test(uint8_t rx_chan, uint8_t phy, in btsnd_hcic_ble_enh_rx_test() argument
774 UINT8_TO_STREAM(pp, phy); in btsnd_hcic_ble_enh_rx_test()
781 uint8_t payload, uint8_t phy) { in btsnd_hcic_ble_enh_tx_test() argument
793 UINT8_TO_STREAM(pp, phy); in btsnd_hcic_ble_enh_tx_test()
1014 uint8_t rtn, uint8_t phy, uint8_t packing, in btsnd_hcic_create_big() argument
1034 UINT8_TO_STREAM(pp, phy); in btsnd_hcic_create_big()
/system/bt/device/src/
Dcontroller.cc732 uint8_t phy = PHY_LE_1M; in get_le_all_initiating_phys() local
736 return phy; in get_le_all_initiating_phys()
/system/bt/stack/test/
Dbtm_iso_test.cc226 UINT8_TO_STREAM(p, big_params.phy); in InitIsoManager()
329 .phy = 0x02,
358 .phy = 0x02,
476 (x.rtn == y.rtn) && (x.phy == y.phy) && (x.packing == y.packing) && in operator ==()
1273 UINT8_TO_STREAM(p, big_params.phy); // phy in TEST_F()
1302 UINT8_TO_STREAM(p, big_params.phy); // phy in TEST_F()
1343 UINT8_TO_STREAM(p, big_params.phy); // phy in TEST_F()
/system/bt/service/hal/
Dfake_bluetooth_gatt_interface.cc47 int phy) { in FakeConnect() argument
/system/bt/binder/android/bluetooth/
DIBluetoothGatt.aidl103 …s, in boolean isDirect, in int transport, in boolean opportunistic, in int phy, in AttributionSour… in clientConnect() argument
/system/bt/stack/gatt/
Dgatt_api.cc1154 uint8_t phy = controller_get_interface()->get_le_all_initiating_phys(); in GATT_Connect() local
1156 phy); in GATT_Connect()
/system/bt/gd/hci/
Dhci_packets.pdl3459 phy : PhyType,
3471 phy : PhyType,
4192 phy : SecondaryPhyType,
4302 phy : 8,
4316 phy : PhyWithCodedSpecified,
4324 phy : 8,
5541 phy : SecondaryPhyType,
5601 phy : 8,
5619 phy : SecondaryPhyType,
/system/bt/vendor_libs/test_vendor_lib/model/controller/
Dlink_layer_controller.h202 uint8_t rtn, bluetooth::hci::SecondaryPhyType phy,
Dlink_layer_controller.cc151 Phy::Type phy = connections_.GetPhyType(handle); in SendAclToRemote() local
182 switch (phy) { in SendAclToRemote()
2758 uint8_t rtn, bluetooth::hci::SecondaryPhyType phy, in LeCreateBig() argument