Home
last modified time | relevance | path

Searched refs:vpnNetId (Results 1 – 4 of 4) sorted by relevance

/system/netd/server/
DRouteController.h90 static int addVirtualNetworkFallthrough(unsigned vpnNetId, const char* physicalInterface,
92 static int removeVirtualNetworkFallthrough(unsigned vpnNetId, const char* physicalInterface,
DNetworkController.cpp75 int modifyFallthrough(unsigned vpnNetId, const std::string& physicalInterface,
97 int NetworkController::DelegateImpl::modifyFallthrough(unsigned vpnNetId, in modifyFallthrough() argument
101 if (int ret = RouteController::addVirtualNetworkFallthrough(vpnNetId, in modifyFallthrough()
105 vpnNetId); in modifyFallthrough()
109 if (int ret = RouteController::removeVirtualNetworkFallthrough(vpnNetId, in modifyFallthrough()
113 vpnNetId); in modifyFallthrough()
657 int NetworkController::modifyFallthroughLocked(unsigned vpnNetId, bool add) { in modifyFallthroughLocked() argument
672 if (int ret = mDelegateImpl->modifyFallthrough(vpnNetId, physicalInterface, permission, in modifyFallthroughLocked()
DRouteController.cpp576 WARN_UNUSED_RESULT int modifyVpnFallthroughRule(uint16_t action, unsigned vpnNetId, in modifyVpnFallthroughRule() argument
587 fwmark.netId = vpnNetId; in modifyVpnFallthroughRule()
1046 int RouteController::addVirtualNetworkFallthrough(unsigned vpnNetId, const char* physicalInterface, in addVirtualNetworkFallthrough() argument
1048 return modifyVpnFallthroughRule(RTM_NEWRULE, vpnNetId, physicalInterface, permission); in addVirtualNetworkFallthrough()
1051 int RouteController::removeVirtualNetworkFallthrough(unsigned vpnNetId, in removeVirtualNetworkFallthrough() argument
1054 return modifyVpnFallthroughRule(RTM_DELRULE, vpnNetId, physicalInterface, permission); in removeVirtualNetworkFallthrough()
DNetworkController.h110 int modifyFallthroughLocked(unsigned vpnNetId, bool add) WARN_UNUSED_RESULT;