Home
last modified time | relevance | path

Searched refs:phy_devices_ (Results 1 – 4 of 4) sorted by relevance

/packages/modules/Bluetooth/tools/rootcanal/model/setup/
Dtest_model.cc113 bool used = std::any_of(phy_devices_.begin(), phy_devices_.end(), in GenerateBluetoothAddress()
131 phy_devices_[phy_device->id] = phy_device; in AddDevice()
140 phy_devices_.erase(device_id); in RemoveDevice()
163 phy_devices_.find(device_id) != phy_devices_.end()) { in AddDeviceToPhy()
164 phy_layers_[phy_id]->Register(phy_devices_[device_id]); in AddDeviceToPhy()
185 phy_layer->Register(phy_devices_[device_id]); in AddLinkLayerConnection()
215 phy_layer->Register(phy_devices_[device->id_]); in AddHciConnection()
231 if (phy_devices_.find(device_id) != phy_devices_.end()) { in OnConnectionClosed()
239 if (phy_devices_.find(device_id) != phy_devices_.end()) { in SetDeviceAddress()
240 phy_devices_[device_id]->SetAddress(std::move(address)); in SetDeviceAddress()
[all …]
Dphy_layer.cc27 phy_devices_.push_back(device); in Register()
31 for (auto& device : phy_devices_) { in Unregister()
34 phy_devices_.remove(device); in Unregister()
41 for (auto& device : phy_devices_) { in UnregisterAll()
44 phy_devices_.clear(); in UnregisterAll()
60 for (const auto& device : phy_devices_) { in Send()
70 for (auto& device : phy_devices_) { in Tick()
87 for (auto& device : phy_devices_) { in ToString()
Dphy_layer.h59 std::list<std::shared_ptr<rootcanal::PhyDevice>> phy_devices_;
Dtest_model.h120 std::map<PhyDevice::Identifier, std::shared_ptr<PhyDevice>> phy_devices_; variable