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

/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/dataconnection/
H A DDcTrackerTest.java474 private boolean isDataAllowed(DataConnectionReasons dataConnectionReasons) { argument
479 return (boolean) method.invoke(mDct, dataConnectionReasons);
495 DataConnectionReasons dataConnectionReasons = new DataConnectionReasons();
496 boolean allowed = isDataAllowed(dataConnectionReasons);
497 assertFalse(dataConnectionReasons.toString(), allowed);
533 dataConnectionReasons = new DataConnectionReasons();
534 allowed = isDataAllowed(dataConnectionReasons);
535 assertTrue(dataConnectionReasons.toString(), allowed);
560 DataConnectionReasons dataConnectionReasons = new DataConnectionReasons();
561 boolean allowed = isDataAllowed(dataConnectionReasons);
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/
H A DDcTracker.java1236 * @param dataConnectionReasons Data connection allowed or disallowed reasons as the output
1241 public boolean isDataAllowed(DataConnectionReasons dataConnectionReasons) { argument
1242 return isDataAllowed(null, dataConnectionReasons);
1250 * @param dataConnectionReasons Data connection allowed or disallowed reasons as the output
1255 boolean isDataAllowed(ApnContext apnContext, DataConnectionReasons dataConnectionReasons) { argument
1301 if (dataConnectionReasons != null) {
1302 dataConnectionReasons.add(DataAllowedReasonType.EMERGENCY_APN);
1360 if (dataConnectionReasons != null) {
1361 dataConnectionReasons.copyFrom(reasons);
1391 if (dataConnectionReasons !
[all...]

Completed in 85 milliseconds