Home
last modified time | relevance | path

Searched refs:inputInterface (Results 1 – 2 of 2) sorted by relevance

/system/netd/server/
DRouteController.h176 [[nodiscard]] static int enableTethering(const char* inputInterface,
178 [[nodiscard]] static int disableTethering(const char* inputInterface,
228 static int modifyTetheredNetwork(uint16_t action, const char* inputInterface,
DRouteController.cpp1117 int RouteController::modifyTetheredNetwork(uint16_t action, const char* inputInterface, in modifyTetheredNetwork() argument
1125 inputInterface, OIF_NONE, INVALID_UID, INVALID_UID); in modifyTetheredNetwork()
1195 [[nodiscard]] static int clearTetheringRules(const char* inputInterface) { in clearTetheringRules() argument
1199 inputInterface, OIF_NONE, INVALID_UID, INVALID_UID); in clearTetheringRules()
1475 int RouteController::enableTethering(const char* inputInterface, const char* outputInterface) { in enableTethering() argument
1476 return modifyTetheredNetwork(RTM_NEWRULE, inputInterface, outputInterface); in enableTethering()
1479 int RouteController::disableTethering(const char* inputInterface, const char* outputInterface) { in disableTethering() argument
1480 return modifyTetheredNetwork(RTM_DELRULE, inputInterface, outputInterface); in disableTethering()