Home
last modified time | relevance | path

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

/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/dataconnection/
DDcTrackerTest.java614 private boolean isDataAllowed(DataConnectionReasons dataConnectionReasons) { in isDataAllowed() argument
619 return (boolean) method.invoke(mDct, dataConnectionReasons); in isDataAllowed()
672 DataConnectionReasons dataConnectionReasons = new DataConnectionReasons(); in testDataSetup() local
673 boolean allowed = isDataAllowed(dataConnectionReasons); in testDataSetup()
674 assertFalse(dataConnectionReasons.toString(), allowed); in testDataSetup()
683 dataConnectionReasons = new DataConnectionReasons(); in testDataSetup()
684 allowed = isDataAllowed(dataConnectionReasons); in testDataSetup()
685 assertTrue(dataConnectionReasons.toString(), allowed); in testDataSetup()
714 DataConnectionReasons dataConnectionReasons = new DataConnectionReasons(); in testDataRetry() local
715 boolean allowed = isDataAllowed(dataConnectionReasons); in testDataRetry()
[all …]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/
DDcTracker.java1258 public boolean isDataAllowed(DataConnectionReasons dataConnectionReasons) { in isDataAllowed() argument
1259 return isDataAllowed(null, REQUEST_TYPE_NORMAL, dataConnectionReasons); in isDataAllowed()
1274 DataConnectionReasons dataConnectionReasons) { in isDataAllowed() argument
1323 if (dataConnectionReasons != null) { in isDataAllowed()
1324 dataConnectionReasons.add(DataAllowedReasonType.EMERGENCY_APN); in isDataAllowed()
1406 if (dataConnectionReasons != null) { in isDataAllowed()
1407 dataConnectionReasons.copyFrom(reasons); in isDataAllowed()
1440 if (dataConnectionReasons != null) { in isDataAllowed()
1441 dataConnectionReasons.copyFrom(reasons); in isDataAllowed()
1518 DataConnectionReasons dataConnectionReasons = new DataConnectionReasons(); in trySetupData() local
[all …]