Home
last modified time | relevance | path

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

/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
DNetworkRegistrationInfoTest.java53 NetworkRegistrationInfo newNrs = NetworkRegistrationInfo.CREATOR.createFromParcel(p); in testParcel() local
54 assertEquals(nri, newNrs); in testParcel()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
DServiceStateTracker.java3221 NetworkRegistrationInfo newNrs = mNewSS.getNetworkRegistrationInfo( in pollStateDone() local
3230 && (newNrs != null && newNrs.isInService()); in pollStateDone()
3234 && (newNrs == null || !newNrs.isInService()); in pollStateDone()
3239 int newRAT = newNrs != null ? newNrs.getAccessNetworkTechnology() in pollStateDone()
3244 boolean isNewCA = newNrs != null ? (newNrs.getDataSpecificInfo() != null in pollStateDone()
3245 ? newNrs.getDataSpecificInfo().isUsingCarrierAggregation() : false) : false; in pollStateDone()
3257 int newRegState = newNrs != null ? newNrs.getRegistrationState() in pollStateDone()