Searched refs:phy_layers_ (Results 1 – 4 of 4) sorted by relevance
137 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 …]
33 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()
57 std::unordered_set<PhyLayer*> phy_layers_; variable
119 std::map<PhyLayer::Identifier, std::shared_ptr<PhyLayer>> phy_layers_; variable