Home
last modified time | relevance | path

Searched refs:dataConnectionReasons (Results 1 – 2 of 2) sorted by relevance

/aosp12/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/dataconnection/
H A DDcTrackerTest.java891 assertFalse(dataConnectionReasons.toString(), allowed); in testDataSetup()
900 dataConnectionReasons = new DataConnectionReasons(); in testDataSetup()
901 allowed = mDct.isDataAllowed(dataConnectionReasons); in testDataSetup()
902 assertTrue(dataConnectionReasons.toString(), allowed); in testDataSetup()
933 assertFalse(dataConnectionReasons.toString(), allowed); in testDataRetry()
942 dataConnectionReasons = new DataConnectionReasons(); in testDataRetry()
943 allowed = mDct.isDataAllowed(dataConnectionReasons); in testDataRetry()
944 assertTrue(dataConnectionReasons.toString(), allowed); in testDataRetry()
2756 dataConnectionReasons = new DataConnectionReasons(); in testRatChanged()
2757 allowed = mDct.isDataAllowed(dataConnectionReasons); in testRatChanged()
[all …]
/aosp12/frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/
H A DDcTracker.java1325 public boolean isDataAllowed(DataConnectionReasons dataConnectionReasons) { in isDataAllowed() argument
1326 return isDataAllowed(null, REQUEST_TYPE_NORMAL, dataConnectionReasons); in isDataAllowed()
1341 DataConnectionReasons dataConnectionReasons) { in isDataAllowed() argument
1390 if (dataConnectionReasons != null) { in isDataAllowed()
1391 dataConnectionReasons.add(DataAllowedReasonType.EMERGENCY_APN); in isDataAllowed()
1502 if (dataConnectionReasons != null) { in isDataAllowed()
1503 dataConnectionReasons.copyFrom(reasons); in isDataAllowed()
1540 if (dataConnectionReasons != null) { in isDataAllowed()
1541 dataConnectionReasons.copyFrom(reasons); in isDataAllowed()
1627 + ". " + dataConnectionReasons.toString(); in trySetupData()
[all …]