Home
last modified time | relevance | path

Searched refs:classLabel (Results 1 – 11 of 11) sorted by relevance

/system/netd/server/
DIdletimerController.cpp142 const char *classLabel) { in modifyInterfaceIdletimer() argument
152 addRemove, LOCAL_RAW_PREROUTING, iface, timeout, classLabel), in modifyInterfaceIdletimer()
156 addRemove, LOCAL_MANGLE_POSTROUTING, iface, timeout, classLabel), in modifyInterfaceIdletimer()
165 const char *classLabel) { in addInterfaceIdletimer() argument
166 return modifyInterfaceIdletimer(IptOpAdd, iface, timeout, classLabel); in addInterfaceIdletimer()
171 const char *classLabel) { in removeInterfaceIdletimer() argument
172 return modifyInterfaceIdletimer(IptOpDelete, iface, timeout, classLabel); in removeInterfaceIdletimer()
DIdletimerController.h30 const char *classLabel);
32 const char *classLabel);
43 const char *classLabel);
DNetdNativeService.h231 const std::string& classLabel) override;
233 const std::string& classLabel) override;
DNetdNativeService.cpp756 const std::string& classLabel) { in idletimerAddInterface() argument
759 gCtls->idletimerCtrl.addInterfaceIdletimer(ifName.c_str(), timeout, classLabel.c_str()); in idletimerAddInterface()
765 const std::string& classLabel) { in idletimerRemoveInterface() argument
768 classLabel.c_str()); in idletimerRemoveInterface()
/system/netd/server/aidl_api/netd_aidl_interface/1/android/net/
DINetd.aidl36 …d idletimerAddInterface(in @utf8InCpp String ifName, int timeout, in @utf8InCpp String classLabel); in idletimerAddInterface() argument
37 …dletimerRemoveInterface(in @utf8InCpp String ifName, int timeout, in @utf8InCpp String classLabel); in idletimerRemoveInterface() argument
/system/netd/server/aidl_api/netd_aidl_interface/2/android/net/
DINetd.aidl53 …d idletimerAddInterface(in @utf8InCpp String ifName, int timeout, in @utf8InCpp String classLabel); in idletimerAddInterface() argument
54 …dletimerRemoveInterface(in @utf8InCpp String ifName, int timeout, in @utf8InCpp String classLabel); in idletimerRemoveInterface() argument
/system/netd/server/aidl_api/netd_aidl_interface/3/android/net/
DINetd.aidl54 …d idletimerAddInterface(in @utf8InCpp String ifName, int timeout, in @utf8InCpp String classLabel); in idletimerAddInterface() argument
55 …dletimerRemoveInterface(in @utf8InCpp String ifName, int timeout, in @utf8InCpp String classLabel); in idletimerRemoveInterface() argument
/system/netd/server/aidl_api/netd_aidl_interface/current/android/net/
DINetd.aidl54 …d idletimerAddInterface(in @utf8InCpp String ifName, int timeout, in @utf8InCpp String classLabel); in idletimerAddInterface() argument
55 …dletimerRemoveInterface(in @utf8InCpp String ifName, int timeout, in @utf8InCpp String classLabel); in idletimerRemoveInterface() argument
/system/netd/server/binder/android/net/
DINetd.aidl514 in @utf8InCpp String classLabel); in idletimerAddInterface() argument
528 in @utf8InCpp String classLabel); in idletimerRemoveInterface() argument
/system/netd/server/aidl_api/netd_aidl_interface/4/android/net/
DINetd.aidl54 …d idletimerAddInterface(in @utf8InCpp String ifName, int timeout, in @utf8InCpp String classLabel); in idletimerAddInterface() argument
55 …dletimerRemoveInterface(in @utf8InCpp String ifName, int timeout, in @utf8InCpp String classLabel); in idletimerRemoveInterface() argument
/system/netd/tests/
Dbinder_test.cpp1091 const std::string& classLabel) { in expectIdletimerInterfaceRuleExists() argument
1093 StringPrintf("timeout:%u label:%s send_nl_msg:1", timeout, classLabel.c_str()); in expectIdletimerInterfaceRuleExists()
1103 const std::string& classLabel) { in expectIdletimerInterfaceRuleNotExists() argument
1105 StringPrintf("timeout:%u label:%s send_nl_msg:1", timeout, classLabel.c_str()); in expectIdletimerInterfaceRuleNotExists()
1125 const std::string classLabel; in TEST_F() member
1131 status = mNetd->idletimerAddInterface(td.ifname, td.timeout, td.classLabel); in TEST_F()
1133 expectIdletimerInterfaceRuleExists(td.ifname, td.timeout, td.classLabel); in TEST_F()
1135 status = mNetd->idletimerRemoveInterface(td.ifname, td.timeout, td.classLabel); in TEST_F()
1137 expectIdletimerInterfaceRuleNotExists(td.ifname, td.timeout, td.classLabel); in TEST_F()