Home | History | Annotate | Download | only in apmanager

Lines Matching full:iface_name

143   string iface_name(reinterpret_cast<const char*>(b.GetConstData()));
147 AddLinkMsgHandler(iface_name, dev_index);
149 DelLinkMsgHandler(iface_name, dev_index);
155 void DeviceInfo::AddLinkMsgHandler(const string& iface_name, int iface_index) {
157 if (!IsWifiInterface(iface_name)) {
158 LOG(INFO) << "Ignore link event for non-wifi interface: " << iface_name;
165 LOG(INFO) << "AddLinkMsgHandler: interface " << iface_name
172 wifi_interface.iface_name = iface_name;
180 void DeviceInfo::DelLinkMsgHandler(const string& iface_name, int iface_index) {
181 LOG(INFO) << "DelLinkMsgHandler iface_name: " << iface_name
195 bool DeviceInfo::IsWifiInterface(const string& iface_name) {
197 if (!GetDeviceInfoContents(iface_name, kInterfaceUevent, &contents)) {
198 LOG(INFO) << "Interface " << iface_name << " has no uevent file";
203 LOG(INFO) << "Interface " << iface_name << " is not a WiFi interface";
210 bool DeviceInfo::GetDeviceInfoContents(const string& iface_name,
214 device_info_root_.Append(iface_name).Append(path_name),