/system/bt/vendor_libs/test_vendor_lib/model/devices/ |
D | device.cc | 29 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 …]
|
D | device.h | 74 void RegisterPhyLayer(std::shared_ptr<PhyLayer> phy);
|
/system/bt/vendor_libs/test_vendor_lib/model/setup/ |
D | phy_layer_factory.cc | 44 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/ |
D | mock_hcic_layer.cc | 84 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/ |
D | btm_ble_bgconn.cc | 46 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()
|
D | btm_iso_impl.h | 503 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/ |
D | btm_iso_api_types.h | 120 uint8_t phy; member 132 uint8_t phy; member
|
D | hcimsgs.h | 748 uint8_t rtn, uint8_t phy, uint8_t packing,
|
/system/bt/main/shim/ |
D | controller.cc | 67 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/ |
D | mock_hcic_hciblecmds.cc | 98 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
|
D | mock_device_controller.cc | 362 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/ |
D | ble_scanner.h | 165 RawAddress address, uint8_t phy, uint16_t interval)>;
|
/system/bt/bta/gatt/ |
D | bta_gattc_api.cc | 122 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/ |
D | hciblecmds.cc | 762 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/ |
D | controller.cc | 732 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/ |
D | btm_iso_test.cc | 226 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/ |
D | fake_bluetooth_gatt_interface.cc | 47 int phy) { in FakeConnect() argument
|
/system/bt/binder/android/bluetooth/ |
D | IBluetoothGatt.aidl | 103 …s, in boolean isDirect, in int transport, in boolean opportunistic, in int phy, in AttributionSour… in clientConnect() argument
|
/system/bt/stack/gatt/ |
D | gatt_api.cc | 1154 uint8_t phy = controller_get_interface()->get_le_all_initiating_phys(); in GATT_Connect() local 1156 phy); in GATT_Connect()
|
/system/bt/gd/hci/ |
D | hci_packets.pdl | 3459 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/ |
D | link_layer_controller.h | 202 uint8_t rtn, bluetooth::hci::SecondaryPhyType phy,
|
D | link_layer_controller.cc | 151 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
|