Searched refs:tetherOffloadRuleRemove (Results 1 – 7 of 7) sorted by relevance
/packages/modules/Connectivity/Tethering/apishim/30/com/android/networkstack/tethering/apishim/api30/ |
D | BpfCoordinatorShimImpl.java | 73 public boolean tetherOffloadRuleRemove(@NonNull final Ipv6ForwardingRule rule) { in tetherOffloadRuleRemove() method in BpfCoordinatorShimImpl 75 mNetd.tetherOffloadRuleRemove(rule.toTetherOffloadRuleParcel()); in tetherOffloadRuleRemove() 160 public boolean tetherOffloadRuleRemove(boolean downstream, @NonNull Tether4Key key) { in tetherOffloadRuleRemove() method in BpfCoordinatorShimImpl
|
/packages/modules/Connectivity/Tethering/apishim/common/com/android/networkstack/tethering/apishim/common/ |
D | BpfCoordinatorShim.java | 76 public abstract boolean tetherOffloadRuleRemove(@NonNull Ipv6ForwardingRule rule); in tetherOffloadRuleRemove() method in BpfCoordinatorShim 155 public abstract boolean tetherOffloadRuleRemove(boolean downstream, @NonNull Tether4Key key); in tetherOffloadRuleRemove() method in BpfCoordinatorShim
|
/packages/modules/Connectivity/Tethering/src/com/android/networkstack/tethering/ |
D | BpfCoordinator.java | 574 public void tetherOffloadRuleRemove( in tetherOffloadRuleRemove() method in BpfCoordinator 578 if (!mBpfCoordinatorShim.tetherOffloadRuleRemove(rule)) return; in tetherOffloadRuleRemove() 623 tetherOffloadRuleRemove(ipServer, rule); in tetherOffloadRuleClear() 652 tetherOffloadRuleRemove(ipServer, rule); in tetherOffloadRuleUpdate() 779 mBpfCoordinatorShim.tetherOffloadRuleRemove(UPSTREAM, k); in tetherOffloadRuleClear() 782 mBpfCoordinatorShim.tetherOffloadRuleRemove(DOWNSTREAM, k); in tetherOffloadRuleClear() 1583 final boolean deletedUpstream = mBpfCoordinatorShim.tetherOffloadRuleRemove( in accept() 1585 final boolean deletedDownstream = mBpfCoordinatorShim.tetherOffloadRuleRemove( in accept()
|
/packages/modules/Connectivity/Tethering/tests/unit/src/com/android/networkstack/tethering/ |
D | BpfCoordinatorTest.java | 499 verifyWithOrder(inOrder, mNetd).tetherOffloadRuleRemove(matches(rule)); in verifyTetherOffloadRuleRemove() 507 verify(mNetd, never()).tetherOffloadRuleRemove(any()); in verifyNeverTetherOffloadRuleRemove() 583 coordinator.tetherOffloadRuleRemove(mIpServer, rule); in checkTetherOffloadRuleAddAndRemove() 892 coordinator.tetherOffloadRuleRemove(mIpServer, ruleB); in testSetDataLimitOnRule6Change() 899 coordinator.tetherOffloadRuleRemove(mIpServer, ruleA); in testSetDataLimitOnRule6Change() 1020 coordinator.tetherOffloadRuleRemove(mIpServer, rule); in checkBpfDisabled()
|
/packages/modules/Connectivity/Tethering/apishim/31/com/android/networkstack/tethering/apishim/api31/ |
D | BpfCoordinatorShimImpl.java | 184 public boolean tetherOffloadRuleRemove(@NonNull final Ipv6ForwardingRule rule) { in tetherOffloadRuleRemove() method in BpfCoordinatorShimImpl 379 public boolean tetherOffloadRuleRemove(boolean downstream, @NonNull Tether4Key key) { in tetherOffloadRuleRemove() method in BpfCoordinatorShimImpl
|
/packages/modules/Connectivity/Tethering/tests/unit/src/android/net/ip/ |
D | IpServerTest.java | 916 verifyWithOrder(inOrder, mNetd).tetherOffloadRuleRemove(matches(upstreamIfindex, dst, in verifyTetherOffloadRuleRemove() 925 verify(mNetd, never()).tetherOffloadRuleRemove(any()); in verifyNeverTetherOffloadRuleRemove() 1036 verify(mBpfCoordinator).tetherOffloadRuleRemove( in addRemoveipv6ForwardingRules() 1045 verify(mBpfCoordinator).tetherOffloadRuleRemove( in addRemoveipv6ForwardingRules() 1178 verify(mBpfCoordinator).tetherOffloadRuleRemove( in enableDisableUsingBpfOffload() 1198 verify(mBpfCoordinator, never()).tetherOffloadRuleRemove(any(), any()); in enableDisableUsingBpfOffload()
|
/packages/modules/Connectivity/Tethering/src/android/net/ip/ |
D | IpServer.java | 882 mBpfCoordinator.tetherOffloadRuleRemove(this, rule); in removeIpv6ForwardingRule()
|