Home
last modified time | relevance | path

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

/frameworks/base/telephony/java/android/telephony/
DVoiceSpecificRegistrationStates.java34 public final int systemIsInPrl; field in VoiceSpecificRegistrationStates
43 VoiceSpecificRegistrationStates(boolean cssSupported, int roamingIndicator, int systemIsInPrl, in VoiceSpecificRegistrationStates() argument
47 this.systemIsInPrl = systemIsInPrl; in VoiceSpecificRegistrationStates()
54 this.systemIsInPrl = source.readInt(); in VoiceSpecificRegistrationStates()
62 dest.writeInt(systemIsInPrl); in writeToParcel()
76 + " mSystemIsInPrl=" + systemIsInPrl in toString()
82 return Objects.hash(cssSupported, roamingIndicator, systemIsInPrl, in hashCode()
97 && this.systemIsInPrl == other.systemIsInPrl in equals()
DNetworkRegistrationState.java141 int roamingIndicator, int systemIsInPrl, int defaultRoamingIndicator) { in NetworkRegistrationState() argument
146 systemIsInPrl, defaultRoamingIndicator); in NetworkRegistrationState()
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
DCellularNetworkServiceTest.java103 int systemIsInPrl = 2; in testGetNetworkRegistrationState() local
119 mSimulatedCommands.mSystemIsInPrl = systemIsInPrl; in testGetNetworkRegistrationState()
138 roamingIndicator, systemIsInPrl, defaultRoamingIndicator); in testGetNetworkRegistrationState()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
DCellularNetworkService.java224 int systemIsInPrl = voiceRegState.systemIsInPrl; in createRegistrationStateFromVoiceRegState() local
233 cellIdentity, cssSupported, roamingIndicator, systemIsInPrl, in createRegistrationStateFromVoiceRegState()
244 int systemIsInPrl = voiceRegState.systemIsInPrl; in createRegistrationStateFromVoiceRegState() local
253 cellIdentity, cssSupported, roamingIndicator, systemIsInPrl, in createRegistrationStateFromVoiceRegState()
DServiceStateTracker.java1819 int systemIsInPrl = voiceSpecificStates.systemIsInPrl; in handlePollStateResultMessage() local
1834 mIsInPrl = (systemIsInPrl == 0) ? false : true; in handlePollStateResultMessage()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/test/
DSimulatedCommands.java969 ret.systemIsInPrl = mSystemIsInPrl; in getVoiceRegistrationState()