Home
last modified time | relevance | path

Searched refs:intfInfo (Results 1 – 2 of 2) sorted by relevance

/openbmc/phosphor-networkd/src/
H A Dnetwork_manager.cpp228 auto infoIt = intfInfo.find(info.idx); in addInterface()
229 if (infoIt != intfInfo.end()) in addInterface()
235 infoIt = std::get<0>(intfInfo.emplace(info.idx, AllIntfInfo{info})); in addInterface()
283 intfInfo.erase(info.idx); in removeInterface()
292 if (auto it = intfInfo.find(info.ifidx); it != intfInfo.end()) in addAddress()
313 if (auto it = intfInfo.find(info.ifidx); it != intfInfo.end()) in removeAddress()
326 if (auto it = intfInfo.find(info.ifidx); it != intfInfo.end()) in addNeighbor()
348 if (auto it = intfInfo.find(info.ifidx); it != intfInfo.end()) in removeNeighbor()
361 if (auto it = intfInfo.find(ifidx); it != intfInfo.end()) in addDefGw()
404 if (auto it = intfInfo.find(ifidx); it != intfInfo.end()) in removeDefGw()
[all …]
H A Dnetwork_manager.hpp147 std::unordered_map<unsigned, AllIntfInfo> intfInfo; member in phosphor::network::Manager