Home
last modified time | relevance | path

Searched refs:tetherOffloadRuleAdd (Results 1 – 7 of 7) sorted by relevance

/packages/modules/Connectivity/Tethering/apishim/30/com/android/networkstack/tethering/apishim/api30/
DBpfCoordinatorShimImpl.java61 public boolean tetherOffloadRuleAdd(@NonNull final Ipv6ForwardingRule rule) { in tetherOffloadRuleAdd() method in BpfCoordinatorShimImpl
63 mNetd.tetherOffloadRuleAdd(rule.toTetherOffloadRuleParcel()); in tetherOffloadRuleAdd()
153 public boolean tetherOffloadRuleAdd(boolean downstream, @NonNull Tether4Key key, in tetherOffloadRuleAdd() method in BpfCoordinatorShimImpl
/packages/modules/Connectivity/Tethering/tests/unit/src/com/android/networkstack/tethering/
DBpfCoordinatorTest.java481 verifyWithOrder(inOrder, mNetd).tetherOffloadRuleAdd(matches(rule)); in verifyTetherOffloadRuleAdd()
489 verify(mNetd, never()).tetherOffloadRuleAdd(any()); in verifyNeverTetherOffloadRuleAdd()
575 coordinator.tetherOffloadRuleAdd(mIpServer, rule); in checkTetherOffloadRuleAddAndRemove()
831 coordinator.tetherOffloadRuleAdd(mIpServer, rule); in testSetDataLimit()
880 coordinator.tetherOffloadRuleAdd(mIpServer, ruleA); in testSetDataLimitOnRule6Change()
887 coordinator.tetherOffloadRuleAdd(mIpServer, ruleB); in testSetDataLimitOnRule6Change()
935 coordinator.tetherOffloadRuleAdd(mIpServer, ethernetRuleA); in testTetherOffloadRuleUpdateAndClear()
940 coordinator.tetherOffloadRuleAdd(mIpServer, ethernetRuleB); in testTetherOffloadRuleUpdateAndClear()
1008 coordinator.tetherOffloadRuleAdd(mIpServer, rule); in checkBpfDisabled()
1505 coordinator.tetherOffloadRuleAdd(mIpServer, ruleA); in testAddDevMapRule6()
[all …]
/packages/modules/Connectivity/Tethering/apishim/common/com/android/networkstack/tethering/apishim/common/
DBpfCoordinatorShim.java65 public abstract boolean tetherOffloadRuleAdd(@NonNull Ipv6ForwardingRule rule); in tetherOffloadRuleAdd() method in BpfCoordinatorShim
145 public abstract boolean tetherOffloadRuleAdd(boolean downstream, @NonNull Tether4Key key, in tetherOffloadRuleAdd() method in BpfCoordinatorShim
/packages/modules/Connectivity/Tethering/tests/unit/src/android/net/ip/
DIpServerTest.java881 verifyWithOrder(inOrder, mNetd).tetherOffloadRuleAdd(matches(upstreamIfindex, dst, in verifyTetherOffloadRuleAdd()
894 verify(mNetd, never()).tetherOffloadRuleAdd(matches(upstreamIfindex, dst, dstMac)); in verifyNeverTetherOffloadRuleAdd()
902 verify(mNetd, never()).tetherOffloadRuleAdd(any()); in verifyNeverTetherOffloadRuleAdd()
1012 verify(mBpfCoordinator).tetherOffloadRuleAdd( in addRemoveipv6ForwardingRules()
1020 verify(mBpfCoordinator).tetherOffloadRuleAdd( in addRemoveipv6ForwardingRules()
1103 verify(mBpfCoordinator).tetherOffloadRuleAdd( in addRemoveipv6ForwardingRules()
1108 verify(mBpfCoordinator, never()).tetherOffloadRuleAdd( in addRemoveipv6ForwardingRules()
1126 verify(mBpfCoordinator).tetherOffloadRuleAdd( in addRemoveipv6ForwardingRules()
1131 verify(mBpfCoordinator).tetherOffloadRuleAdd( in addRemoveipv6ForwardingRules()
1170 verify(mBpfCoordinator).tetherOffloadRuleAdd( in enableDisableUsingBpfOffload()
[all …]
/packages/modules/Connectivity/Tethering/apishim/31/com/android/networkstack/tethering/apishim/api31/
DBpfCoordinatorShimImpl.java167 public boolean tetherOffloadRuleAdd(@NonNull final Ipv6ForwardingRule rule) { in tetherOffloadRuleAdd() method in BpfCoordinatorShimImpl
353 public boolean tetherOffloadRuleAdd(boolean downstream, @NonNull Tether4Key key, in tetherOffloadRuleAdd() method in BpfCoordinatorShimImpl
/packages/modules/Connectivity/Tethering/src/com/android/networkstack/tethering/
DBpfCoordinator.java533 public void tetherOffloadRuleAdd( in tetherOffloadRuleAdd() method in BpfCoordinator
538 if (!mBpfCoordinatorShim.tetherOffloadRuleAdd(rule)) return; in tetherOffloadRuleAdd()
655 tetherOffloadRuleAdd(ipServer, rule.onNewUpstream(newUpstreamIfindex)); in tetherOffloadRuleUpdate()
1610 mBpfCoordinatorShim.tetherOffloadRuleAdd(UPSTREAM, upstream4Key, upstream4Value); in accept()
1611 mBpfCoordinatorShim.tetherOffloadRuleAdd(DOWNSTREAM, downstream4Key, downstream4Value); in accept()
/packages/modules/Connectivity/Tethering/src/android/net/ip/
DIpServer.java874 mBpfCoordinator.tetherOffloadRuleAdd(this, rule); in addIpv6ForwardingRule()