OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:STATE_IN_SERVICE
(Results
1 - 25
of
50
) sorted by null
1
2
/cts/tests/tests/telephony/src/android/telephony/cts/
ServiceStateTest.java
40
serviceState.setState(ServiceState.
STATE_IN_SERVICE
);
41
assertEquals(ServiceState.
STATE_IN_SERVICE
, serviceState.getState());
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
CdmaLteServiceStateTracker.java
296
boolean hasRegistered = mSS.getVoiceRegState() != ServiceState.
STATE_IN_SERVICE
297
&& mNewSS.getVoiceRegState() == ServiceState.
STATE_IN_SERVICE
;
299
boolean hasDeregistered = mSS.getVoiceRegState() == ServiceState.
STATE_IN_SERVICE
300
&& mNewSS.getVoiceRegState() != ServiceState.
STATE_IN_SERVICE
;
303
mSS.getDataRegState() != ServiceState.
STATE_IN_SERVICE
304
&& mNewSS.getDataRegState() == ServiceState.
STATE_IN_SERVICE
;
307
mSS.getDataRegState() == ServiceState.
STATE_IN_SERVICE
308
&& mNewSS.getDataRegState() != ServiceState.
STATE_IN_SERVICE
;
328
mNewSS.getDataRegState() == ServiceState.
STATE_IN_SERVICE
&&
401
if (mSS.getVoiceRegState() == ServiceState.
STATE_IN_SERVICE
) {
[
all
...]
CdmaServiceStateTracker.java
[
all
...]
CdmaSMSDispatcher.java
257
if (!isIms() && ss != ServiceState.
STATE_IN_SERVICE
) {
CDMAPhone.java
288
if (mSST == null || mSST.mSS.getState() != ServiceState.
STATE_IN_SERVICE
) {
290
mImsPhone.getServiceState().getState() == ServiceState.
STATE_IN_SERVICE
) {
381
if (mSST.getCurrentDataConnectionState() == ServiceState.
STATE_IN_SERVICE
) {
421
&& ((imsPhone.getServiceState().getState() == ServiceState.
STATE_IN_SERVICE
768
} else if (mSST.getCurrentDataConnectionState() != ServiceState.
STATE_IN_SERVICE
) {
[
all
...]
/packages/services/Telephony/src/com/android/phone/
OtaStartupReceiver.java
85
// -
STATE_IN_SERVICE
// Normal operation
91
// Once we reach
STATE_IN_SERVICE
93
if (state.getState() == ServiceState.
STATE_IN_SERVICE
) {
143
if (app.mCM.getServiceState() != ServiceState.
STATE_IN_SERVICE
) {
EmergencyCallHelper.java
196
// -
STATE_IN_SERVICE
// Normal operation
202
// Once we reach either
STATE_IN_SERVICE
or STATE_EMERGENCY_ONLY,
204
boolean okToCall = (state.getState() == ServiceState.
STATE_IN_SERVICE
)
222
//
STATE_IN_SERVICE
or STATE_EMERGENCY_ONLY very shortly.
CallController.java
556
case ServiceState.
STATE_IN_SERVICE
:
[
all
...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
GsmServiceStateTracker.java
609
} else if (mSS.getVoiceRegState() == ServiceState.
STATE_IN_SERVICE
) {
[
all
...]
GSMPhone.java
293
if (mSST == null || mSST.mSS.getState() != ServiceState.
STATE_IN_SERVICE
) {
295
mImsPhone.getServiceState().getState() == ServiceState.
STATE_IN_SERVICE
) {
349
mSST.getCurrentDataConnectionState() != ServiceState.
STATE_IN_SERVICE
) {
363
} else { /* mSST.gprsState == ServiceState.
STATE_IN_SERVICE
*/
395
if (mSST.getCurrentDataConnectionState() == ServiceState.
STATE_IN_SERVICE
) {
748
&& imsPhone.getServiceState().getState() == ServiceState.
STATE_IN_SERVICE
) {
819
&& ((imsPhone.getServiceState().getState() == ServiceState.
STATE_IN_SERVICE
[
all
...]
GsmSMSDispatcher.java
290
if (!isIms() && ss != ServiceState.
STATE_IN_SERVICE
) {
/packages/services/Telephony/src/com/android/services/telephony/
EmergencyCallHelper.java
156
// -
STATE_IN_SERVICE
// Normal operation
173
// So just keep waiting; we'll probably get to either
STATE_IN_SERVICE
or
181
// Once we reach either
STATE_IN_SERVICE
or STATE_EMERGENCY_ONLY, it's finally OK to place
184
|| (serviceState == ServiceState.
STATE_IN_SERVICE
)
TelecomAccountRegistry.java
205
if (newState == ServiceState.
STATE_IN_SERVICE
&& mServiceState != newState) {
TelephonyConnectionService.java
144
case ServiceState.
STATE_IN_SERVICE
:
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
ServiceStateTracker.java
494
if (getCurrentDataConnectionState() == ServiceState.
STATE_IN_SERVICE
) {
512
if (getCurrentDataConnectionState() != ServiceState.
STATE_IN_SERVICE
) {
548
if (mSS.getVoiceRegState() == ServiceState.
STATE_IN_SERVICE
) {
[
all
...]
SMSDispatcher.java
365
if ( tracker.mImsRetry > 0 && ss != ServiceState.
STATE_IN_SERVICE
) {
380
if (!isIms() && ss != ServiceState.
STATE_IN_SERVICE
) {
[
all
...]
PhoneBase.java
[
all
...]
/packages/apps/Bluetooth/src/com/android/bluetooth/hfp/
HeadsetPhoneState.java
184
mService = (serviceState.getState() == ServiceState.
STATE_IN_SERVICE
) ?
/packages/apps/CellBroadcastReceiver/src/com/android/cellbroadcastreceiver/
CellBroadcastReceiver.java
64
if (newState == ServiceState.
STATE_IN_SERVICE
||
/frameworks/base/telephony/java/android/telephony/
ServiceState.java
45
public static final int
STATE_IN_SERVICE
= 0;
309
* @see #
STATE_IN_SERVICE
323
* @see #
STATE_IN_SERVICE
/frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/
DctController.java
168
case ServiceState.
STATE_IN_SERVICE
:
170
logd("DataStateReceiver:
STATE_IN_SERVICE
Intent from phoneId="
/frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/
ImsPhoneBase.java
125
s.setState(ServiceState.
STATE_IN_SERVICE
);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/sip/
SipPhoneBase.java
109
s.setState(ServiceState.
STATE_IN_SERVICE
);
/packages/apps/Mms/src/com/android/mms/transaction/
SmsReceiverService.java
228
if (serviceState.getState() == ServiceState.
STATE_IN_SERVICE
) {
/packages/apps/Settings/src/com/android/settings/deviceinfo/
Status.java
508
case ServiceState.
STATE_IN_SERVICE
:
Completed in 358 milliseconds
1
2