Lines Matching refs:iter
183 map<uint32_t, Device::WiFiInterface>::iterator iter = in DelLinkMsgHandler() local
185 if (iter != interface_infos_.end()) { in DelLinkMsgHandler()
187 scoped_refptr<Device> device = GetDevice(iter->second.device_name); in DelLinkMsgHandler()
189 device->DeregisterInterface(iter->second); in DelLinkMsgHandler()
191 interface_infos_.erase(iter); in DelLinkMsgHandler()
254 map<uint32_t, Device::WiFiInterface>::iterator iter = in OnWiFiInterfaceInfoReceived() local
256 if (iter == interface_infos_.end()) { in OnWiFiInterfaceInfoReceived()
261 iter->second.iface_type = interface_type; in OnWiFiInterfaceInfoReceived()
289 map<uint32_t, Device::WiFiInterface>::iterator iter = in OnWiFiInterfacePhyInfoReceived() local
291 if (iter == interface_infos_.end()) { in OnWiFiInterfacePhyInfoReceived()
315 iter->second.device_name = device_name; in OnWiFiInterfacePhyInfoReceived()
317 device->RegisterInterface(iter->second); in OnWiFiInterfacePhyInfoReceived()
330 map<string, scoped_refptr<Device>>::iterator iter = in GetDevice() local
332 if (iter == devices_.end()) { in GetDevice()
335 return iter->second; in GetDevice()