Home
last modified time | relevance | path

Searched refs:mDataProfileManager (Results 1 – 6 of 6) sorted by relevance

/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/data/
DDataRetryManagerTest.java887 Mockito.clearInvocations(mDataRetryManagerCallbackMock, mDataProfileManager); in testRilCrashedReset()
907 verify(mDataProfileManager).clearAllDataProfilePermanentFailures(); in testRilCrashedReset()
913 Mockito.clearInvocations(mDataRetryManagerCallbackMock, mDataProfileManager); in testModemCrashedReset()
933 verify(mDataProfileManager).clearAllDataProfilePermanentFailures(); in testModemCrashedReset()
941 Mockito.clearInvocations(mDataRetryManagerCallbackMock, mDataProfileManager); in testTacChangedReset()
961 verify(mDataProfileManager).clearAllDataProfilePermanentFailures(); in testTacChangedReset()
DDataNetworkControllerTest.java975 mDataNetworkControllerUT, mDataProfileManager); in setUp()
1012 }).when(mDataProfileManager).isDataProfileCompatible(any(DataProfile.class)); in setUp()
1022 }).when(mDataProfileManager).areDataProfilesSharingApn(any(DataProfile.class), in setUp()
1055 }).when(mDataProfileManager).getDataProfileForNetworkRequest( in setUp()
1347 }).when(mDataProfileManager).isDataProfileCompatible(any(DataProfile.class)); in testSetupDataNetworkWithSimilarDataProfile()
1364 }).when(mDataProfileManager).getDataProfileForNetworkRequest( in testSetupDataNetworkWithSimilarDataProfile()
1409 doReturn(mEnterpriseDataProfile).when(mDataProfileManager) in testSetupEnterpriseDataNetwork()
1624 doReturn(null).when(mDataProfileManager).getDataProfileForNetworkRequest( in testRatChanges()
1638 doReturn(null).when(mDataProfileManager).getDataProfileForNetworkRequest( in testRatChanges()
1645 doReturn(mGeneralPurposeDataProfile).when(mDataProfileManager) in testRatChanges()
[all …]
DDataNetworkTest.java2450 .build()).when(mDataProfileManager).getDataProfileForNetworkRequest( in testMmsCapabilityRemovedWhenMmsPreferredOnIwlan()
2462 doReturn(mMmsDataProfile).when(mDataProfileManager).getDataProfileForNetworkRequest( in testMmsCapabilityRemovedWhenMmsPreferredOnIwlan()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/data/
DDataNetworkController.java275 private final DataProfileManager mDataProfileManager; field in DataNetworkController
967 mDataProfileManager = TelephonyComponentFactory.getInstance().inject( in DataNetworkController()
1593 DataProfile emergencyProfile = mDataProfileManager.getDataProfileForNetworkRequest( in evaluateNetworkRequest()
1763 DataProfile dataProfile = mDataProfileManager in evaluateNetworkRequest()
2086 if (!mDataProfileManager.isDataProfileCompatible(dataProfile)) { in evaluateDataNetwork()
2092 && !mDataProfileManager.isDataProfilePreferred(dataProfile) in evaluateDataNetwork()
2093 && mDataProfileManager.canPreferredDataProfileSatisfy( in evaluateDataNetwork()
2832 || mDataProfileManager.areDataProfilesSharingApn( in setupDataNetwork()
3937 return mDataProfileManager; in getDataProfileManager()
4332 mDataProfileManager.dump(fd, pw, args); in dump()
DDataRetryManager.java193 private final DataProfileManager mDataProfileManager; field in DataRetryManager
1034 mDataProfileManager = dataNetworkController.getDataProfileManager();
1048 mDataProfileManager.registerCallback(new DataProfileManagerCallback(this::post) {
1424 mDataProfileManager.clearAllDataProfilePermanentFailures();
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
DTelephonyTest.java216 protected DataProfileManager mDataProfileManager; field in TelephonyTest
503 mDataProfileManager = Mockito.mock(DataProfileManager.class); in setUp()
693 doReturn(mDataProfileManager).when(mTelephonyComponentFactory) in setUp()
743 doReturn(mDataProfileManager).when(mDataNetworkController).getDataProfileManager(); in setUp()