• 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 == evt->NlActionAddressRemoved && 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()
158 void NetlinkHandler::notifyQuotaLimitReached(const char *name, const char *iface) { in notifyQuotaLimitReached() argument
159 notify(ResponseCode::BandwidthControl, "limit alert %s %s", name, iface); in notifyQuotaLimitReached()
173 const char *iface, const char *flags, in notifyAddressChanged() argument
178 addr, iface, flags, scope); in notifyAddressChanged()
181 void NetlinkHandler::notifyInterfaceDnsServers(const char *iface, in notifyInterfaceDnsServers() argument
185 iface, lifetime, servers); in notifyInterfaceDnsServers()
189 const char *gateway, const char *iface) { in notifyRouteChange() argument
196 *iface ? " dev " : "", in notifyRouteChange()
197 iface); in notifyRouteChange()