Home
last modified time | relevance | path

Searched refs:systemIsInPrl (Results 1 – 6 of 6) sorted by relevance

/frameworks/base/telephony/java/android/telephony/
DVoiceSpecificRegistrationInfo.java51 public final int systemIsInPrl; field in VoiceSpecificRegistrationInfo
60 VoiceSpecificRegistrationInfo(boolean cssSupported, int roamingIndicator, int systemIsInPrl, in VoiceSpecificRegistrationInfo() argument
64 this.systemIsInPrl = systemIsInPrl; in VoiceSpecificRegistrationInfo()
77 systemIsInPrl = vsri.systemIsInPrl; in VoiceSpecificRegistrationInfo()
84 this.systemIsInPrl = source.readInt(); in VoiceSpecificRegistrationInfo()
92 dest.writeInt(systemIsInPrl); in writeToParcel()
106 + " mSystemIsInPrl=" + systemIsInPrl in toString()
112 return Objects.hash(cssSupported, roamingIndicator, systemIsInPrl, in hashCode()
127 && this.systemIsInPrl == other.systemIsInPrl in equals()
DNetworkRegistrationInfo.java234 int roamingIndicator, int systemIsInPrl, in NetworkRegistrationInfo() argument
240 systemIsInPrl, defaultRoamingIndicator); in NetworkRegistrationInfo()
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
DCellularNetworkServiceTest.java108 int systemIsInPrl = 2; in testGetNetworkRegistrationInfo() local
124 mSimulatedCommands.mSystemIsInPrl = systemIsInPrl; in testGetNetworkRegistrationInfo()
143 roamingIndicator, systemIsInPrl, defaultRoamingIndicator); in testGetNetworkRegistrationInfo()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
DCellularNetworkService.java227 int systemIsInPrl = voiceRegState.systemIsInPrl; in createRegistrationStateFromVoiceRegState() local
236 cellIdentity, cssSupported, roamingIndicator, systemIsInPrl, in createRegistrationStateFromVoiceRegState()
250 int systemIsInPrl = voiceRegState.systemIsInPrl; in createRegistrationStateFromVoiceRegState() local
259 cellIdentity, cssSupported, roamingIndicator, systemIsInPrl, in createRegistrationStateFromVoiceRegState()
DServiceStateTracker.java2053 int systemIsInPrl = voiceSpecificStates.systemIsInPrl; in handlePollStateResultMessage() local
2067 mIsInPrl = (systemIsInPrl == 0) ? false : true; in handlePollStateResultMessage()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/test/
DSimulatedCommands.java979 ret.systemIsInPrl = mSystemIsInPrl; in getVoiceRegistrationState()