Home
last modified time | relevance | path

Searched refs:ifName (Results 1 – 25 of 37) sorted by relevance

12

/system/netd/server/
DInterfaceController.h37 static int setEnableIPv6(const char* ifName, const int on);
38 static android::netdutils::Status setIPv6AddrGenMode(const std::string& ifName, int mode);
39 static int setAcceptIPv6Ra(const char* ifName, const int on);
40 static int setAcceptIPv6Dad(const char* ifName, const int on);
41 static int setIPv6DadTransmits(const char* ifName, const char* value);
42 static int setIPv6PrivacyExtensions(const char* ifName, const int on);
43 static int setMtu(const char* ifName, const char* mtu);
44 static int addAddress(const char* ifName, const char* addrString, int prefixLength);
45 static int delAddress(const char* ifName, const char* addrString, int prefixLength);
49 const std::string& ifName);
[all …]
DNetlinkHandler.h44 void notifyInterfaceAdded(const std::string& ifName);
45 void notifyInterfaceRemoved(const std::string& ifName);
46 void notifyInterfaceChanged(const std::string& ifName, bool isUp);
47 void notifyInterfaceLinkChanged(const std::string& ifName, bool isUp);
48 void notifyQuotaLimitReached(const std::string& labelName, const std::string& ifName);
50 void notifyAddressUpdated(const std::string& addr, const std::string& ifName, int flags,
52 void notifyAddressRemoved(const std::string& addr, const std::string& ifName, int flags,
54 void notifyInterfaceDnsServers(const std::string& ifName, int64_t lifetime,
57 const std::string& ifName);
DNetlinkHandler.cpp235 void NetlinkHandler::notifyInterfaceAdded(const std::string& ifName) { in notifyInterfaceAdded() argument
236 LOG_EVENT_FUNC(BINDER_RETRY, onInterfaceAdded, ifName); in notifyInterfaceAdded()
239 void NetlinkHandler::notifyInterfaceRemoved(const std::string& ifName) { in notifyInterfaceRemoved() argument
240 LOG_EVENT_FUNC(BINDER_RETRY, onInterfaceRemoved, ifName); in notifyInterfaceRemoved()
243 void NetlinkHandler::notifyInterfaceChanged(const std::string& ifName, bool up) { in notifyInterfaceChanged() argument
244 LOG_EVENT_FUNC(BINDER_RETRY, onInterfaceChanged, ifName, up); in notifyInterfaceChanged()
247 void NetlinkHandler::notifyInterfaceLinkChanged(const std::string& ifName, bool up) { in notifyInterfaceLinkChanged() argument
248 LOG_EVENT_FUNC(BINDER_RETRY, onInterfaceLinkStateChanged, ifName, up); in notifyInterfaceLinkChanged()
252 const std::string& ifName) { in notifyQuotaLimitReached() argument
253 LOG_EVENT_FUNC(BINDER_RETRY, onQuotaLimitReached, labelName, ifName); in notifyQuotaLimitReached()
[all …]
DNetdNativeService.h44 binder::Status firewallSetInterfaceRule(const std::string& ifName,
49 binder::Status firewallAddUidInterfaceRules(const std::string& ifName,
55 binder::Status bandwidthSetInterfaceQuota(const std::string& ifName, int64_t bytes) override;
56 binder::Status bandwidthRemoveInterfaceQuota(const std::string& ifName) override;
57 binder::Status bandwidthSetInterfaceAlert(const std::string& ifName, int64_t bytes) override;
58 binder::Status bandwidthRemoveInterfaceAlert(const std::string& ifName) override;
82 binder::Status networkAddRoute(int32_t netId, const std::string& ifName,
85 binder::Status networkRemoveRoute(int32_t netId, const std::string& ifName,
88 binder::Status networkAddLegacyRoute(int32_t netId, const std::string& ifName,
91 binder::Status networkRemoveLegacyRoute(int32_t netId, const std::string& ifName,
[all …]
DNetdNativeService.cpp285 binder::Status NetdNativeService::bandwidthSetInterfaceQuota(const std::string& ifName, in bandwidthSetInterfaceQuota() argument
288 int res = gCtls->bandwidthCtrl.setInterfaceQuota(ifName, bytes); in bandwidthSetInterfaceQuota()
292 binder::Status NetdNativeService::bandwidthRemoveInterfaceQuota(const std::string& ifName) { in bandwidthRemoveInterfaceQuota() argument
294 int res = gCtls->bandwidthCtrl.removeInterfaceQuota(ifName); in bandwidthRemoveInterfaceQuota()
298 binder::Status NetdNativeService::bandwidthSetInterfaceAlert(const std::string& ifName, in bandwidthSetInterfaceAlert() argument
301 int res = gCtls->bandwidthCtrl.setInterfaceAlert(ifName, bytes); in bandwidthSetInterfaceAlert()
305 binder::Status NetdNativeService::bandwidthRemoveInterfaceAlert(const std::string& ifName) { in bandwidthRemoveInterfaceAlert() argument
307 int res = gCtls->bandwidthCtrl.removeInterfaceAlert(ifName); in bandwidthRemoveInterfaceAlert()
503 binder::Status NetdNativeService::interfaceAddAddress(const std::string &ifName, in interfaceAddAddress() argument
507 ifName.c_str(), addrString.c_str(), prefixLength); in interfaceAddAddress()
[all …]
DWakeupController.h68 netdutils::Status addInterface(const std::string& ifName, const std::string& prefix,
73 netdutils::Status delInterface(const std::string& ifName, const std::string& prefix,
77 netdutils::Status execIptables(const std::string& action, const std::string& ifName,
DWakeupController.cpp194 Status WakeupController::addInterface(const std::string& ifName, const std::string& prefix, in addInterface() argument
196 return execIptables("-A", ifName, prefix, mark, mask); in addInterface()
199 Status WakeupController::delInterface(const std::string& ifName, const std::string& prefix, in delInterface() argument
201 return execIptables("-D", ifName, prefix, mark, mask); in delInterface()
204 Status WakeupController::execIptables(const std::string& action, const std::string& ifName, in execIptables() argument
214 kFormat, action.c_str(), WakeupController::LOCAL_MANGLE_INPUT, ifName.c_str(), in execIptables()
DInterfaceController.cpp479 strlcpy(ifr.ifr_name, cfg.ifName.c_str(), IFNAMSIZ); in setCfg()
502 if (int ret = ifc_add_address(cfg.ifName.c_str(), cfg.ipv4Addr.c_str(), cfg.prefixLength)) { in setCfg()
509 StatusOr<InterfaceConfigurationParcel> InterfaceController::getCfg(const std::string& ifName) { in getCfg() argument
520 strlcpy(ifr.ifr_name, ifName.c_str(), IFNAMSIZ); in getCfg()
540 ALOGW("Failed to retrieve HW addr for %s (%s)", ifName.c_str(), strerror(errno)); in getCfg()
543 cfgResult.ifName = ifName; in getCfg()
560 int InterfaceController::clearAddrs(const std::string& ifName) { in clearAddrs() argument
561 return ifc_clear_addresses(ifName.c_str()); in clearAddrs()
/system/netd/tests/
DTestUnsolService.cpp66 void TestUnsolService::checkTarget(const std::string& ifName, uint32_t flag) { in checkTarget() argument
67 if (containsSubstring(tarVec, ifName)) { in checkTarget()
90 const std::string& ifName) { in onQuotaLimitReached() argument
91 events_.push_back(StringPrintf("onQuotaLimitReached %s %s", alertName.c_str(), ifName.c_str())); in onQuotaLimitReached()
95 binder::Status TestUnsolService::onInterfaceDnsServerInfo(const std::string& ifName, in onInterfaceDnsServerInfo() argument
98 events_.push_back(StringPrintf("onInterfaceDnsServerInfo %s %" PRId64 "%s", ifName.c_str(), in onInterfaceDnsServerInfo()
104 const std::string& ifName, int, int) { in onInterfaceAddressUpdated() argument
105 checkTarget(ifName, InterfaceAddressUpdated); in onInterfaceAddressUpdated()
110 const std::string& ifName, int flags, in onInterfaceAddressRemoved() argument
113 ifName.c_str(), flags, scope)); in onInterfaceAddressRemoved()
[all …]
DTestUnsolService.h59 const std::string& ifName) override;
60 binder::Status onInterfaceDnsServerInfo(const std::string& ifName, int64_t lifetime,
62 binder::Status onInterfaceAddressUpdated(const std::string& addr, const std::string& ifName,
64 binder::Status onInterfaceAddressRemoved(const std::string& addr, const std::string& ifName,
66 binder::Status onInterfaceAdded(const std::string& ifName) override;
67 binder::Status onInterfaceRemoved(const std::string& ifName) override;
68 binder::Status onInterfaceChanged(const std::string& ifName, bool status) override;
69 binder::Status onInterfaceLinkStateChanged(const std::string& ifName, bool status) override;
71 const std::string& gateway, const std::string& ifName) override;
78 void checkTarget(const std::string& ifName, uint32_t flag);
Dtun_interface.h32 int init(const std::string& ifName, bool isTap);
36 int init(const std::string& ifName) { return init(ifName, false); } in init() argument
Dbinder_test.cpp1637 std::string ipRouteString(const std::string& ifName, const std::string& dst, in ipRouteString() argument
1645 dstString += " dev " + ifName; in ipRouteString()
1664 void expectNetworkRouteExistsWithMtu(const char* ipVersion, const std::string& ifName, in expectNetworkRouteExistsWithMtu() argument
1667 std::string routeString = ipRouteString(ifName, dst, nextHop, mtu); in expectNetworkRouteExistsWithMtu()
1668 EXPECT_TRUE(ipRouteExists(ipVersion, table, ipRouteString(ifName, dst, nextHop, mtu))) in expectNetworkRouteExistsWithMtu()
1672 void expectNetworkRouteExists(const char* ipVersion, const std::string& ifName, in expectNetworkRouteExists() argument
1675 expectNetworkRouteExistsWithMtu(ipVersion, ifName, dst, nextHop, "", table); in expectNetworkRouteExists()
1678 void expectNetworkRouteDoesNotExist(const char* ipVersion, const std::string& ifName, in expectNetworkRouteDoesNotExist() argument
1681 std::string routeString = ipRouteString(ifName, dst, nextHop, ""); in expectNetworkRouteDoesNotExist()
1682 EXPECT_FALSE(ipRouteExists(ipVersion, table, ipRouteString(ifName, dst, nextHop, ""))) in expectNetworkRouteDoesNotExist()
[all …]
/system/netd/server/binder/android/net/
DINetdUnsolicitedEventListener.aidl51 void onQuotaLimitReached(@utf8InCpp String alertName, @utf8InCpp String ifName); in onQuotaLimitReached() argument
63 @utf8InCpp String ifName, long lifetimeS, in @utf8InCpp String[] servers); in onInterfaceDnsServerInfo()
75 @utf8InCpp String ifName, in onInterfaceAddressUpdated() argument
89 @utf8InCpp String ifName, in onInterfaceAddressRemoved() argument
98 void onInterfaceAdded(@utf8InCpp String ifName); in onInterfaceAdded() argument
105 void onInterfaceRemoved(@utf8InCpp String ifName); in onInterfaceRemoved() argument
113 void onInterfaceChanged(@utf8InCpp String ifName, boolean up); in onInterfaceChanged() argument
121 void onInterfaceLinkStateChanged(@utf8InCpp String ifName, boolean up); in onInterfaceLinkStateChanged() argument
135 @utf8InCpp String ifName); in onRouteChanged() argument
DINetd.aidl212 void interfaceAddAddress(in @utf8InCpp String ifName, in @utf8InCpp String addrString, in interfaceAddAddress() argument
214 void interfaceDelAddress(in @utf8InCpp String ifName, in @utf8InCpp String addrString, in interfaceDelAddress() argument
479 …void wakeupAddInterface(in @utf8InCpp String ifName, in @utf8InCpp String prefix, int mark, int ma… in wakeupAddInterface() argument
487 …void wakeupDelInterface(in @utf8InCpp String ifName, in @utf8InCpp String prefix, int mark, int ma… in wakeupDelInterface() argument
500 void setIPv6AddrGenMode(in @utf8InCpp String ifName, int mode); in setIPv6AddrGenMode() argument
512 in @utf8InCpp String ifName, in idletimerAddInterface()
526 in @utf8InCpp String ifName, in idletimerRemoveInterface()
553 @utf8InCpp String clatdStart(in @utf8InCpp String ifName, in @utf8InCpp String nat64Prefix); in clatdStart() argument
562 void clatdStop(in @utf8InCpp String ifName); in clatdStop() argument
627 void bandwidthSetInterfaceQuota(in @utf8InCpp String ifName, long bytes); in bandwidthSetInterfaceQuota() argument
[all …]
/system/netd/server/aidl_api/netd_aidl_interface/current/android/net/
DINetdUnsolicitedEventListener.aidl22 oneway void onQuotaLimitReached(@utf8InCpp String alertName, @utf8InCpp String ifName); in onQuotaLimitReached() argument
23 …oneway void onInterfaceDnsServerInfo(@utf8InCpp String ifName, long lifetimeS, in @utf8InCpp Strin… in onInterfaceDnsServerInfo() argument
24 …oneway void onInterfaceAddressUpdated(@utf8InCpp String addr, @utf8InCpp String ifName, int flags,… in onInterfaceAddressUpdated() argument
25 …oneway void onInterfaceAddressRemoved(@utf8InCpp String addr, @utf8InCpp String ifName, int flags,… in onInterfaceAddressRemoved() argument
26 oneway void onInterfaceAdded(@utf8InCpp String ifName); in onInterfaceAdded() argument
27 oneway void onInterfaceRemoved(@utf8InCpp String ifName); in onInterfaceRemoved() argument
28 oneway void onInterfaceChanged(@utf8InCpp String ifName, boolean up); in onInterfaceChanged() argument
29 oneway void onInterfaceLinkStateChanged(@utf8InCpp String ifName, boolean up); in onInterfaceLinkStateChanged() argument
30 …ged(boolean updated, @utf8InCpp String route, @utf8InCpp String gateway, @utf8InCpp String ifName); in onRouteChanged() argument
DINetd.aidl35 …void interfaceAddAddress(in @utf8InCpp String ifName, in @utf8InCpp String addrString, int prefixL… in interfaceAddAddress() argument
36 …void interfaceDelAddress(in @utf8InCpp String ifName, in @utf8InCpp String addrString, int prefixL… in interfaceDelAddress() argument
51 …void wakeupAddInterface(in @utf8InCpp String ifName, in @utf8InCpp String prefix, int mark, int ma… in wakeupAddInterface() argument
52 …void wakeupDelInterface(in @utf8InCpp String ifName, in @utf8InCpp String prefix, int mark, int ma… in wakeupDelInterface() argument
53 void setIPv6AddrGenMode(in @utf8InCpp String ifName, int mode); in setIPv6AddrGenMode() argument
54 …void idletimerAddInterface(in @utf8InCpp String ifName, int timeout, in @utf8InCpp String classLab… in idletimerAddInterface() argument
55 …void idletimerRemoveInterface(in @utf8InCpp String ifName, int timeout, in @utf8InCpp String class… in idletimerRemoveInterface() argument
57 @utf8InCpp String clatdStart(in @utf8InCpp String ifName, in @utf8InCpp String nat64Prefix); in clatdStart() argument
58 void clatdStop(in @utf8InCpp String ifName); in clatdStop() argument
65 void bandwidthSetInterfaceQuota(in @utf8InCpp String ifName, long bytes); in bandwidthSetInterfaceQuota() argument
[all …]
/system/netd/server/aidl_api/netd_aidl_interface/3/android/net/
DINetdUnsolicitedEventListener.aidl22 oneway void onQuotaLimitReached(@utf8InCpp String alertName, @utf8InCpp String ifName); in onQuotaLimitReached() argument
23 …oneway void onInterfaceDnsServerInfo(@utf8InCpp String ifName, long lifetimeS, in @utf8InCpp Strin… in onInterfaceDnsServerInfo() argument
24 …oneway void onInterfaceAddressUpdated(@utf8InCpp String addr, @utf8InCpp String ifName, int flags,… in onInterfaceAddressUpdated() argument
25 …oneway void onInterfaceAddressRemoved(@utf8InCpp String addr, @utf8InCpp String ifName, int flags,… in onInterfaceAddressRemoved() argument
26 oneway void onInterfaceAdded(@utf8InCpp String ifName); in onInterfaceAdded() argument
27 oneway void onInterfaceRemoved(@utf8InCpp String ifName); in onInterfaceRemoved() argument
28 oneway void onInterfaceChanged(@utf8InCpp String ifName, boolean up); in onInterfaceChanged() argument
29 oneway void onInterfaceLinkStateChanged(@utf8InCpp String ifName, boolean up); in onInterfaceLinkStateChanged() argument
30 …ged(boolean updated, @utf8InCpp String route, @utf8InCpp String gateway, @utf8InCpp String ifName); in onRouteChanged() argument
DINetd.aidl35 …void interfaceAddAddress(in @utf8InCpp String ifName, in @utf8InCpp String addrString, int prefixL… in interfaceAddAddress() argument
36 …void interfaceDelAddress(in @utf8InCpp String ifName, in @utf8InCpp String addrString, int prefixL… in interfaceDelAddress() argument
51 …void wakeupAddInterface(in @utf8InCpp String ifName, in @utf8InCpp String prefix, int mark, int ma… in wakeupAddInterface() argument
52 …void wakeupDelInterface(in @utf8InCpp String ifName, in @utf8InCpp String prefix, int mark, int ma… in wakeupDelInterface() argument
53 void setIPv6AddrGenMode(in @utf8InCpp String ifName, int mode); in setIPv6AddrGenMode() argument
54 …void idletimerAddInterface(in @utf8InCpp String ifName, int timeout, in @utf8InCpp String classLab… in idletimerAddInterface() argument
55 …void idletimerRemoveInterface(in @utf8InCpp String ifName, int timeout, in @utf8InCpp String class… in idletimerRemoveInterface() argument
57 @utf8InCpp String clatdStart(in @utf8InCpp String ifName, in @utf8InCpp String nat64Prefix); in clatdStart() argument
58 void clatdStop(in @utf8InCpp String ifName); in clatdStop() argument
65 void bandwidthSetInterfaceQuota(in @utf8InCpp String ifName, long bytes); in bandwidthSetInterfaceQuota() argument
[all …]
/system/netd/server/aidl_api/netd_aidl_interface/4/android/net/
DINetdUnsolicitedEventListener.aidl22 oneway void onQuotaLimitReached(@utf8InCpp String alertName, @utf8InCpp String ifName); in onQuotaLimitReached() argument
23 …oneway void onInterfaceDnsServerInfo(@utf8InCpp String ifName, long lifetimeS, in @utf8InCpp Strin… in onInterfaceDnsServerInfo() argument
24 …oneway void onInterfaceAddressUpdated(@utf8InCpp String addr, @utf8InCpp String ifName, int flags,… in onInterfaceAddressUpdated() argument
25 …oneway void onInterfaceAddressRemoved(@utf8InCpp String addr, @utf8InCpp String ifName, int flags,… in onInterfaceAddressRemoved() argument
26 oneway void onInterfaceAdded(@utf8InCpp String ifName); in onInterfaceAdded() argument
27 oneway void onInterfaceRemoved(@utf8InCpp String ifName); in onInterfaceRemoved() argument
28 oneway void onInterfaceChanged(@utf8InCpp String ifName, boolean up); in onInterfaceChanged() argument
29 oneway void onInterfaceLinkStateChanged(@utf8InCpp String ifName, boolean up); in onInterfaceLinkStateChanged() argument
30 …ged(boolean updated, @utf8InCpp String route, @utf8InCpp String gateway, @utf8InCpp String ifName); in onRouteChanged() argument
DINetd.aidl35 …void interfaceAddAddress(in @utf8InCpp String ifName, in @utf8InCpp String addrString, int prefixL… in interfaceAddAddress() argument
36 …void interfaceDelAddress(in @utf8InCpp String ifName, in @utf8InCpp String addrString, int prefixL… in interfaceDelAddress() argument
51 …void wakeupAddInterface(in @utf8InCpp String ifName, in @utf8InCpp String prefix, int mark, int ma… in wakeupAddInterface() argument
52 …void wakeupDelInterface(in @utf8InCpp String ifName, in @utf8InCpp String prefix, int mark, int ma… in wakeupDelInterface() argument
53 void setIPv6AddrGenMode(in @utf8InCpp String ifName, int mode); in setIPv6AddrGenMode() argument
54 …void idletimerAddInterface(in @utf8InCpp String ifName, int timeout, in @utf8InCpp String classLab… in idletimerAddInterface() argument
55 …void idletimerRemoveInterface(in @utf8InCpp String ifName, int timeout, in @utf8InCpp String class… in idletimerRemoveInterface() argument
57 @utf8InCpp String clatdStart(in @utf8InCpp String ifName, in @utf8InCpp String nat64Prefix); in clatdStart() argument
58 void clatdStop(in @utf8InCpp String ifName); in clatdStop() argument
65 void bandwidthSetInterfaceQuota(in @utf8InCpp String ifName, long bytes); in bandwidthSetInterfaceQuota() argument
[all …]
DRouteInfoParcel.aidl21 @utf8InCpp String ifName;
/system/netd/server/aidl_api/netd_aidl_interface/1/android/net/
DINetdUnsolicitedEventListener.aidl4 oneway void onQuotaLimitReached(@utf8InCpp String alertName, @utf8InCpp String ifName); in onQuotaLimitReached() argument
5 …oneway void onInterfaceDnsServerInfo(@utf8InCpp String ifName, long lifetimeS, in @utf8InCpp Strin… in onInterfaceDnsServerInfo() argument
6 …oneway void onInterfaceAddressUpdated(@utf8InCpp String addr, @utf8InCpp String ifName, int flags,… in onInterfaceAddressUpdated() argument
7 …oneway void onInterfaceAddressRemoved(@utf8InCpp String addr, @utf8InCpp String ifName, int flags,… in onInterfaceAddressRemoved() argument
8 oneway void onInterfaceAdded(@utf8InCpp String ifName); in onInterfaceAdded() argument
9 oneway void onInterfaceRemoved(@utf8InCpp String ifName); in onInterfaceRemoved() argument
10 oneway void onInterfaceChanged(@utf8InCpp String ifName, boolean up); in onInterfaceChanged() argument
11 oneway void onInterfaceLinkStateChanged(@utf8InCpp String ifName, boolean up); in onInterfaceLinkStateChanged() argument
12 …ged(boolean updated, @utf8InCpp String route, @utf8InCpp String gateway, @utf8InCpp String ifName); in onRouteChanged() argument
DINetd.aidl17 …void interfaceAddAddress(in @utf8InCpp String ifName, in @utf8InCpp String addrString, int prefixL… in interfaceAddAddress() argument
18 …void interfaceDelAddress(in @utf8InCpp String ifName, in @utf8InCpp String addrString, int prefixL… in interfaceDelAddress() argument
33 …void wakeupAddInterface(in @utf8InCpp String ifName, in @utf8InCpp String prefix, int mark, int ma… in wakeupAddInterface() argument
34 …void wakeupDelInterface(in @utf8InCpp String ifName, in @utf8InCpp String prefix, int mark, int ma… in wakeupDelInterface() argument
35 void setIPv6AddrGenMode(in @utf8InCpp String ifName, int mode); in setIPv6AddrGenMode() argument
36 …void idletimerAddInterface(in @utf8InCpp String ifName, int timeout, in @utf8InCpp String classLab… in idletimerAddInterface() argument
37 …void idletimerRemoveInterface(in @utf8InCpp String ifName, int timeout, in @utf8InCpp String class… in idletimerRemoveInterface() argument
39 @utf8InCpp String clatdStart(in @utf8InCpp String ifName, in @utf8InCpp String nat64Prefix); in clatdStart() argument
40 void clatdStop(in @utf8InCpp String ifName); in clatdStop() argument
47 void bandwidthSetInterfaceQuota(in @utf8InCpp String ifName, long bytes); in bandwidthSetInterfaceQuota() argument
[all …]
/system/netd/server/aidl_api/netd_aidl_interface/2/android/net/
DINetdUnsolicitedEventListener.aidl21 oneway void onQuotaLimitReached(@utf8InCpp String alertName, @utf8InCpp String ifName); in onQuotaLimitReached() argument
22 …oneway void onInterfaceDnsServerInfo(@utf8InCpp String ifName, long lifetimeS, in @utf8InCpp Strin… in onInterfaceDnsServerInfo() argument
23 …oneway void onInterfaceAddressUpdated(@utf8InCpp String addr, @utf8InCpp String ifName, int flags,… in onInterfaceAddressUpdated() argument
24 …oneway void onInterfaceAddressRemoved(@utf8InCpp String addr, @utf8InCpp String ifName, int flags,… in onInterfaceAddressRemoved() argument
25 oneway void onInterfaceAdded(@utf8InCpp String ifName); in onInterfaceAdded() argument
26 oneway void onInterfaceRemoved(@utf8InCpp String ifName); in onInterfaceRemoved() argument
27 oneway void onInterfaceChanged(@utf8InCpp String ifName, boolean up); in onInterfaceChanged() argument
28 oneway void onInterfaceLinkStateChanged(@utf8InCpp String ifName, boolean up); in onInterfaceLinkStateChanged() argument
29 …ged(boolean updated, @utf8InCpp String route, @utf8InCpp String gateway, @utf8InCpp String ifName); in onRouteChanged() argument
DINetd.aidl34 …void interfaceAddAddress(in @utf8InCpp String ifName, in @utf8InCpp String addrString, int prefixL… in interfaceAddAddress() argument
35 …void interfaceDelAddress(in @utf8InCpp String ifName, in @utf8InCpp String addrString, int prefixL… in interfaceDelAddress() argument
50 …void wakeupAddInterface(in @utf8InCpp String ifName, in @utf8InCpp String prefix, int mark, int ma… in wakeupAddInterface() argument
51 …void wakeupDelInterface(in @utf8InCpp String ifName, in @utf8InCpp String prefix, int mark, int ma… in wakeupDelInterface() argument
52 void setIPv6AddrGenMode(in @utf8InCpp String ifName, int mode); in setIPv6AddrGenMode() argument
53 …void idletimerAddInterface(in @utf8InCpp String ifName, int timeout, in @utf8InCpp String classLab… in idletimerAddInterface() argument
54 …void idletimerRemoveInterface(in @utf8InCpp String ifName, int timeout, in @utf8InCpp String class… in idletimerRemoveInterface() argument
56 @utf8InCpp String clatdStart(in @utf8InCpp String ifName, in @utf8InCpp String nat64Prefix); in clatdStart() argument
57 void clatdStop(in @utf8InCpp String ifName); in clatdStop() argument
64 void bandwidthSetInterfaceQuota(in @utf8InCpp String ifName, long bytes); in bandwidthSetInterfaceQuota() argument
[all …]

12