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.cpp229 auto infoIt = intfInfo.find(info.idx); in addInterface()
230 if (infoIt != intfInfo.end()) in addInterface()
236 infoIt = std::get<0>(intfInfo.emplace(info.idx, AllIntfInfo{info})); in addInterface()
284 intfInfo.erase(info.idx); in removeInterface()
293 if (auto it = intfInfo.find(info.ifidx); it != intfInfo.end()) in addAddress()
314 if (auto it = intfInfo.find(info.ifidx); it != intfInfo.end()) in removeAddress()
327 if (auto it = intfInfo.find(info.ifidx); it != intfInfo.end()) in addNeighbor()
349 if (auto it = intfInfo.find(info.ifidx); it != intfInfo.end()) in removeNeighbor()
362 if (auto it = intfInfo.find(ifidx); it != intfInfo.end()) in addDefGw()
407 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