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.java601 private boolean isDataAllowed(DataConnectionReasons dataConnectionReasons) { in isDataAllowed() argument
606 return (boolean) method.invoke(mDct, dataConnectionReasons); in isDataAllowed()
619 DataConnectionReasons dataConnectionReasons = new DataConnectionReasons(); in testDataSetup() local
620 boolean allowed = isDataAllowed(dataConnectionReasons); in testDataSetup()
621 assertFalse(dataConnectionReasons.toString(), allowed); in testDataSetup()
636 dataConnectionReasons = new DataConnectionReasons(); in testDataSetup()
637 allowed = isDataAllowed(dataConnectionReasons); in testDataSetup()
638 assertTrue(dataConnectionReasons.toString(), allowed); in testDataSetup()
667 DataConnectionReasons dataConnectionReasons = new DataConnectionReasons(); in testDataRetry() local
668 boolean allowed = isDataAllowed(dataConnectionReasons); in testDataRetry()
[all …]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/
DDcTracker.java1229 public boolean isDataAllowed(DataConnectionReasons dataConnectionReasons) { in isDataAllowed() argument
1230 return isDataAllowed(null, REQUEST_TYPE_NORMAL, dataConnectionReasons); in isDataAllowed()
1245 DataConnectionReasons dataConnectionReasons) { in isDataAllowed() argument
1292 if (dataConnectionReasons != null) { in isDataAllowed()
1293 dataConnectionReasons.add(DataAllowedReasonType.EMERGENCY_APN); in isDataAllowed()
1356 if (dataConnectionReasons != null) { in isDataAllowed()
1357 dataConnectionReasons.copyFrom(reasons); in isDataAllowed()
1393 if (dataConnectionReasons != null) { in isDataAllowed()
1394 dataConnectionReasons.copyFrom(reasons); in isDataAllowed()
1470 DataConnectionReasons dataConnectionReasons = new DataConnectionReasons(); in trySetupData() local
[all …]