Home
last modified time | relevance | path

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

/dports/net/ns3/ns-allinone-3.35/ns-3.35/src/network/utils/
H A Dsimple-channel.cc67 if (m_blackListedDevices.find (tmp) != m_blackListedDevices.end ()) in Send()
69 if (find (m_blackListedDevices[tmp].begin (), m_blackListedDevices[tmp].end (), sender) != in Send()
70 m_blackListedDevices[tmp].end () ) in Send()
104 if (m_blackListedDevices.find (to) != m_blackListedDevices.end ()) in BlackList()
106 if (find (m_blackListedDevices[to].begin (), m_blackListedDevices[to].end (), from) == in BlackList()
107 m_blackListedDevices[to].end () ) in BlackList()
114 m_blackListedDevices[to].push_back (from); in BlackList()
121 if (m_blackListedDevices.find (to) != m_blackListedDevices.end ()) in UnBlackList()
124 iter = find (m_blackListedDevices[to].begin (), m_blackListedDevices[to].end (), from); in UnBlackList()
125 if (iter != m_blackListedDevices[to].end () ) in UnBlackList()
[all …]
H A Dsimple-channel.h103 …std::map<Ptr<SimpleNetDevice>, std::vector<Ptr<SimpleNetDevice> > > m_blackListedDevices; //!< dev… variable