Lines Matching refs:observedInterfaces
113 foreach(var i in observedInterfaces) in DetachInterface()
153 if(observedInterfaces.ContainsKey(reporter)) in AddInterface()
155 if(!observedInterfaces[reporter].Contains(iface)) in AddInterface()
157 observedInterfaces[reporter].Add(iface); in AddInterface()
172 observedInterfaces.Add(reporter, new List<INetworkInterface>() { iface }); in AddInterface()
184 observedInterfaces.Clear(); in ClearLog()
195 … var observedCopy = new Dictionary<IExternal, List<INetworkInterface>>(observedInterfaces); in OnMachineRemoved()
203 observedInterfaces[external.Key].Remove(iface); in OnMachineRemoved()
207 if(observedInterfaces[external.Key].Count == 0) in OnMachineRemoved()
209 observedInterfaces.Remove(external.Key); in OnMachineRemoved()
213 if(observedInterfaces.Count == 0 && observedMedium.Count == 0) in OnMachineRemoved()
238 if(observedInterfaces.ContainsKey(reporter) in SendTransmittedFrame()
239 …&& (observedInterfaces[reporter].Contains(sender) || observedInterfaces[reporter].Contains(receive… in SendTransmittedFrame()
250 … if(observedInterfaces.ContainsKey(reporter) && observedInterfaces[reporter].Contains(sender)) in SendTransmittedFrame()
261 …private Dictionary<IExternal, List<INetworkInterface>> observedInterfaces = new Dictionary<IExtern… field in Antmicro.Renode.Plugins.WiresharkPlugin.Wireshark