Home
last modified time | relevance | path

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

/packages/modules/Bluetooth/tools/rootcanal/model/setup/
Dtest_model.cc137 for (auto& [_, phy_layer] : phy_layers_) { in RemoveDevice()
147 phy_layers_[phy_layer->id] = phy_layer; in AddPhy()
153 if (phy_layers_.find(phy_id) != phy_layers_.end()) { in RemovePhy()
154 phy_layers_[phy_id]->UnregisterAll(); in RemovePhy()
155 phy_layers_.erase(phy_id); in RemovePhy()
162 if (phy_layers_.find(phy_id) != phy_layers_.end() && in AddDeviceToPhy()
164 phy_layers_[phy_id]->Register(phy_devices_[device_id]); in AddDeviceToPhy()
171 if (phy_layers_.find(phy_id) != phy_layers_.end()) { in RemoveDeviceFromPhy()
172 phy_layers_[phy_id]->Unregister(device_id); in RemoveDeviceFromPhy()
183 for (auto& [_, phy_layer] : phy_layers_) { in AddLinkLayerConnection()
[all …]
Dphy_device.cc33 void PhyDevice::Register(PhyLayer* phy) { phy_layers_.insert(phy); } in Register()
35 void PhyDevice::Unregister(PhyLayer* phy) { phy_layers_.erase(phy); } in Unregister()
67 for (auto const& phy : phy_layers_) { in Send()
Dphy_device.h57 std::unordered_set<PhyLayer*> phy_layers_; variable
Dtest_model.h119 std::map<PhyLayer::Identifier, std::shared_ptr<PhyLayer>> phy_layers_; variable