• Home
  • Raw
  • Download

Lines Matching refs:iface

62         const char *iface = evt->findParam("INTERFACE");  in onEvent()  local
65 notifyInterfaceAdded(iface); in onEvent()
67 notifyInterfaceRemoved(iface); in onEvent()
72 notifyInterfaceLinkChanged(iface, true); in onEvent()
74 notifyInterfaceLinkChanged(iface, false); in onEvent()
80 if (action == NetlinkEvent::Action::kAddressRemoved && iface && address) { in onEvent()
83 if (int ret = ifc_reset_connections(iface, resetMask)) { in onEvent()
84 ALOGE("ifc_reset_connections failed on iface %s for address %s (%s)", iface, in onEvent()
88 if (iface && flags && scope) { in onEvent()
89 notifyAddressChanged(action, address, iface, flags, scope); in onEvent()
95 notifyInterfaceDnsServers(iface, lifetime, servers); in onEvent()
101 const char *iface = evt->findParam("INTERFACE"); in onEvent() local
102 if (route && (gateway || iface)) { in onEvent()
103 notifyRouteChange(action, route, gateway, iface); in onEvent()
109 const char *iface = evt->findParam("INTERFACE"); in onEvent() local
110 notifyQuotaLimitReached(alertName, iface); in onEvent()
165 void NetlinkHandler::notifyQuotaLimitReached(const char *name, const char *iface) { in notifyQuotaLimitReached() argument
166 notify(ResponseCode::BandwidthControl, "limit alert %s %s", name, iface); in notifyQuotaLimitReached()
185 const char *iface, const char *flags, in notifyAddressChanged() argument
190 addr, iface, flags, scope); in notifyAddressChanged()
193 void NetlinkHandler::notifyInterfaceDnsServers(const char *iface, in notifyInterfaceDnsServers() argument
197 iface, lifetime, servers); in notifyInterfaceDnsServers()
201 const char *gateway, const char *iface) { in notifyRouteChange() argument
208 *iface ? " dev " : "", in notifyRouteChange()
209 iface); in notifyRouteChange()