Home
last modified time | relevance | path

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

/packages/modules/Connectivity/Tethering/tests/unit/src/com/android/networkstack/tethering/
DBpfCoordinatorTest.java606 bpfCoordinator.maybeAddUpstreamToLookupTable(upstreamIfindex, upstreamIface); in dispatchIpv6UpstreamChanged()
1031 coordinator.maybeAddUpstreamToLookupTable(mobileIfIndex, mobileIface); in checkTetherOffloadGetStats()
1071 coordinator.maybeAddUpstreamToLookupTable(wlanIfIndex, wlanIface); in testGetForwardedStats()
1072 coordinator.maybeAddUpstreamToLookupTable(mobileIfIndex, mobileIface); in testGetForwardedStats()
1135 coordinator.maybeAddUpstreamToLookupTable(mobileIfIndex, mobileIface); in testOnSetAlert()
1505 coordinator.maybeAddUpstreamToLookupTable(ifIndex, iface); in checkBpfDisabled()
1849 coordinator.maybeAddUpstreamToLookupTable(upstreamInfo.interfaceParams.index, in setUpstreamInformationTo()
2739 coordinator.maybeAddUpstreamToLookupTable(UPSTREAM_IFINDEX, UPSTREAM_IFACE); in testDumpDoesNotCrash()
2908 coordinator.maybeAddUpstreamToLookupTable(UPSTREAM_IFINDEX, UPSTREAM_IFACE); in verifyUpdateUpstreamNetworkState()
2975 coordinator.maybeAddUpstreamToLookupTable(UPSTREAM_IFINDEX2, UPSTREAM_IFACE2); in verifyUpdateUpstreamNetworkState()
/packages/modules/Connectivity/Tethering/tests/unit/src/android/net/ip/
DIpServerTest.java289 verify(mBpfCoordinator, times(2)).maybeAddUpstreamToLookupTable( in initTetheredStateMachine()
540 inOrder.verify(mBpfCoordinator).maybeAddUpstreamToLookupTable(UPSTREAM_IFINDEX, in handlesFirstUpstreamChange()
562 inOrder.verify(mBpfCoordinator).maybeAddUpstreamToLookupTable(UPSTREAM_IFINDEX2, in handlesChangingUpstream()
588 inOrder.verify(mBpfCoordinator).maybeAddUpstreamToLookupTable(UPSTREAM_IFINDEX2, in handlesChangingUpstreamNatFailure()
617 inOrder.verify(mBpfCoordinator).maybeAddUpstreamToLookupTable(UPSTREAM_IFINDEX2, in handlesChangingUpstreamInterfaceForwardingFailure()
/packages/modules/Connectivity/Tethering/src/android/net/ip/
DIpServer.java873 mBpfCoordinator.maybeAddUpstreamToLookupTable(upstreamIfIndex, upstreamIface); in updateUpstreamIPv6LinkProperties()
1498 mBpfCoordinator.maybeAddUpstreamToLookupTable( in processMessage()
/packages/modules/Connectivity/Tethering/src/com/android/networkstack/tethering/
DBpfCoordinator.java836 public void maybeAddUpstreamToLookupTable(int upstreamIfindex, @Nullable String upstreamIface) { in maybeAddUpstreamToLookupTable() method in BpfCoordinator