Home
last modified time | relevance | path

Searched refs:mBpfUpstream6Map (Results 1 – 3 of 3) sorted by relevance

/packages/modules/Connectivity/Tethering/apishim/31/com/android/networkstack/tethering/apishim/api31/
DBpfCoordinatorShimImpl.java81 private final BpfMap<TetherUpstream6Key, Tether6Value> mBpfUpstream6Map; field in BpfCoordinatorShimImpl
115 mBpfUpstream6Map = deps.getBpfUpstream6Map(); in BpfCoordinatorShimImpl()
138 if (mBpfUpstream6Map != null) mBpfUpstream6Map.clear(); in BpfCoordinatorShimImpl()
162 && mBpfUpstream6Map != null && mBpfStatsMap != null && mBpfLimitMap != null in isInitialized()
209 mBpfUpstream6Map.insertEntry(key, value); in startUpstreamIpv6Forwarding()
224 mBpfUpstream6Map.deleteEntry(key); in stopUpstreamIpv6Forwarding()
493 mapStatus(mBpfUpstream6Map, "mBpfUpstream6Map"), in toString()
/packages/modules/Connectivity/Tethering/tests/unit/src/android/net/ip/
DIpServerTest.java188 @Mock private BpfMap<TetherUpstream6Key, Tether6Value> mBpfUpstream6Map; field in IpServerTest
333 return mBpfUpstream6Map; in setUp()
937 verifyWithOrder(inOrder, mBpfUpstream6Map).insertEntry(key, value); in verifyStartUpstreamIpv6Forwarding()
945 verifyWithOrder(inOrder, mBpfUpstream6Map).deleteEntry(key); in verifyStopUpstreamIpv6Forwarding()
951 inOrder.verify(mBpfUpstream6Map, never()).deleteEntry(any()); in verifyNoUpstreamIpv6ForwardingChange()
952 inOrder.verify(mBpfUpstream6Map, never()).insertEntry(any(), any()); in verifyNoUpstreamIpv6ForwardingChange()
953 inOrder.verify(mBpfUpstream6Map, never()).updateEntry(any(), any()); in verifyNoUpstreamIpv6ForwardingChange()
955 verify(mBpfUpstream6Map, never()).deleteEntry(any()); in verifyNoUpstreamIpv6ForwardingChange()
956 verify(mBpfUpstream6Map, never()).insertEntry(any(), any()); in verifyNoUpstreamIpv6ForwardingChange()
957 verify(mBpfUpstream6Map, never()).updateEntry(any(), any()); in verifyNoUpstreamIpv6ForwardingChange()
[all …]
/packages/modules/Connectivity/Tethering/tests/unit/src/com/android/networkstack/tethering/
DBpfCoordinatorTest.java219 @Mock private BpfMap<TetherUpstream6Key, Tether6Value> mBpfUpstream6Map; field in BpfCoordinatorTest
291 return mBpfUpstream6Map;
451 verifyWithOrder(inOrder, mBpfUpstream6Map).insertEntry(key, value); in verifyStartUpstreamIpv6Forwarding()
459 verifyWithOrder(inOrder, mBpfUpstream6Map).deleteEntry(key); in verifyStopUpstreamIpv6Forwarding()
465 inOrder.verify(mBpfUpstream6Map, never()).deleteEntry(any()); in verifyNoUpstreamIpv6ForwardingChange()
466 inOrder.verify(mBpfUpstream6Map, never()).insertEntry(any(), any()); in verifyNoUpstreamIpv6ForwardingChange()
467 inOrder.verify(mBpfUpstream6Map, never()).updateEntry(any(), any()); in verifyNoUpstreamIpv6ForwardingChange()
469 verify(mBpfUpstream6Map, never()).deleteEntry(any()); in verifyNoUpstreamIpv6ForwardingChange()
470 verify(mBpfUpstream6Map, never()).insertEntry(any(), any()); in verifyNoUpstreamIpv6ForwardingChange()
471 verify(mBpfUpstream6Map, never()).updateEntry(any(), any()); in verifyNoUpstreamIpv6ForwardingChange()
[all …]