Home
last modified time | relevance | path

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

/system/netd/server/
DRouteController.h86 static int addVirtualNetworkFallthrough(unsigned vpnNetId, const char* physicalInterface,
88 static int removeVirtualNetworkFallthrough(unsigned vpnNetId, const char* physicalInterface,
DNetworkController.cpp70 int modifyFallthrough(unsigned vpnNetId, const std::string& physicalInterface,
92 int NetworkController::DelegateImpl::modifyFallthrough(unsigned vpnNetId, in modifyFallthrough() argument
96 if (int ret = RouteController::addVirtualNetworkFallthrough(vpnNetId, in modifyFallthrough()
100 vpnNetId); in modifyFallthrough()
104 if (int ret = RouteController::removeVirtualNetworkFallthrough(vpnNetId, in modifyFallthrough()
108 vpnNetId); in modifyFallthrough()
642 int NetworkController::modifyFallthroughLocked(unsigned vpnNetId, bool add) { in modifyFallthroughLocked() argument
657 if (int ret = mDelegateImpl->modifyFallthrough(vpnNetId, physicalInterface, permission, in modifyFallthroughLocked()
DRouteController.cpp616 WARN_UNUSED_RESULT int modifyVpnFallthroughRule(uint16_t action, unsigned vpnNetId, in modifyVpnFallthroughRule() argument
627 fwmark.netId = vpnNetId; in modifyVpnFallthroughRule()
1114 int RouteController::addVirtualNetworkFallthrough(unsigned vpnNetId, const char* physicalInterface, in addVirtualNetworkFallthrough() argument
1116 return modifyVpnFallthroughRule(RTM_NEWRULE, vpnNetId, physicalInterface, permission); in addVirtualNetworkFallthrough()
1119 int RouteController::removeVirtualNetworkFallthrough(unsigned vpnNetId, in removeVirtualNetworkFallthrough() argument
1122 return modifyVpnFallthroughRule(RTM_DELRULE, vpnNetId, physicalInterface, permission); in removeVirtualNetworkFallthrough()
DNetworkController.h105 int modifyFallthroughLocked(unsigned vpnNetId, bool add) WARN_UNUSED_RESULT;