Home
last modified time | relevance | path

Searched refs:EpdgSelector (Results 1 – 8 of 8) sorted by relevance

/packages/services/Iwlan/test/com/google/android/iwlan/
DIwlanBroadcastReceiverTest.java33 import com.google.android.iwlan.epdg.EpdgSelector;
64 @Mock private EpdgSelector mMockEpdgSelector;
73 .mockStatic(EpdgSelector.class) in setUp()
85 .when(EpdgSelector.getSelectorInstance(eq(mMockContext), eq(testSlotId))) in setUp()
DIwlanDataServiceTest.java53 import com.google.android.iwlan.epdg.EpdgSelector;
105 @Mock private EpdgSelector mMockEpdgSelector;
169 .mockStatic(EpdgSelector.class) in setUp()
207 when(EpdgSelector.getSelectorInstance(eq(mMockContext), eq(DEFAULT_SLOT_INDEX))) in setUp()
598 eq(EpdgSelector.PROTO_FILTER_IPV4V6), in testDnsPrefetching()
606 eq(EpdgSelector.PROTO_FILTER_IPV4V6), in testDnsPrefetching()
/packages/services/Iwlan/test/com/google/android/iwlan/epdg/
DEpdgTunnelManagerTest.java98 @Mock private EpdgSelector mMockEpdgSelector;
123 any(EpdgSelector.EpdgSelectorCallback.class))) in setUp()
235 eq(EpdgSelector.PROTO_FILTER_IPV4), in testBringUPTunnelSuccess()
304 any(EpdgSelector.EpdgSelectorCallback.class))) in testRekeyAndNattTimerFromCarrierConfig()
370 any(EpdgSelector.EpdgSelectorCallback.class))) in testSetRetransmissionTimeoutsFromCarrierConfig()
427 any(EpdgSelector.EpdgSelectorCallback.class))) in testSetDpdDelayFromCarrierConfig()
485 any(EpdgSelector.EpdgSelectorCallback.class))) in testGetValidEpdgAddress_DiffAddr()
538 any(EpdgSelector.EpdgSelectorCallback.class))) in testGetValidEpdgAddress_NextAddr()
658 any(EpdgSelector.EpdgSelectorCallback.class))) in verifyBackOffTimer()
938 any(EpdgSelector.EpdgSelectorCallback.class))) in testSetIkeTrafficSelectors()
[all …]
DEpdgSelectorTest.java59 private EpdgSelector mEpdgSelector;
96 mEpdgSelector = new EpdgSelector(mMockContext, DEFAULT_SLOT_INDEX); in setUp()
249 EpdgSelector.PROTO_FILTER_IPV4V6, in getValidatedServerListWithDefaultParams()
253 new EpdgSelector.EpdgSelectorCallback() { in getValidatedServerListWithDefaultParams()
/packages/services/Iwlan/src/com/google/android/iwlan/
DIwlanBroadcastReceiver.java30 import com.google.android.iwlan.epdg.EpdgSelector;
124 EpdgSelector selector = in processCarrierSignalPcoValue()
125 EpdgSelector.getSelectorInstance(mContext, intentSlotIndex); in processCarrierSignalPcoValue()
DIwlanDataService.java52 import com.google.android.iwlan.epdg.EpdgSelector;
185 private EpdgSelector mEpdgSelector;
638 mEpdgSelector = EpdgSelector.getSelectorInstance(mContext, slotIndex); in IwlanDataServiceProvider()
1080 0, EpdgSelector.PROTO_FILTER_IPV4V6, isRoaming, false, network, null); in prefetchEpdgServerList()
1082 0, EpdgSelector.PROTO_FILTER_IPV4V6, isRoaming, true, network, null); in prefetchEpdgServerList()
/packages/services/Iwlan/src/com/google/android/iwlan/epdg/
DEpdgSelector.java49 public class EpdgSelector { class
53 private static ConcurrentHashMap<Integer, EpdgSelector> mSelectorInstances =
89 EpdgSelector(Context context, int slotId) { in EpdgSelector() method in EpdgSelector
94 public static EpdgSelector getSelectorInstance(Context context, int slotId) { in getSelectorInstance()
95 mSelectorInstances.computeIfAbsent(slotId, k -> new EpdgSelector(context, slotId)); in getSelectorInstance()
DEpdgTunnelManager.java209 private final EpdgSelector.EpdgSelectorCallback mSelectorCallback =
210 new EpdgSelector.EpdgSelectorCallback() {
1427 int protoFilter = EpdgSelector.PROTO_FILTER_IPV4V6; in selectEpdgAddress()
1429 protoFilter = EpdgSelector.PROTO_FILTER_IPV4; in selectEpdgAddress()
1432 protoFilter = EpdgSelector.PROTO_FILTER_IPV6; in selectEpdgAddress()
1435 EpdgSelector epdgSelector = getEpdgSelector(); in selectEpdgAddress()
1452 EpdgSelector getEpdgSelector() { in getEpdgSelector()
1453 return EpdgSelector.getSelectorInstance(mContext, mSlotId); in getEpdgSelector()
1784 EpdgSelector.EpdgSelectorCallback getSelectorCallback() { in getSelectorCallback()