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
59
) sorted by null
1
2
3
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
PhoneStateListenerTest.java
70
ss.setDataRegState(ServiceState.
STATE_IN_SERVICE
);
77
verify(mServiceState).setDataRegState(ServiceState.
STATE_IN_SERVICE
);
ServiceStateTest.java
63
ss.setDataRegState(ServiceState.
STATE_IN_SERVICE
);
64
assertEquals(ServiceState.
STATE_IN_SERVICE
, ss.getDataRegState());
66
ss.setVoiceRegState(ServiceState.
STATE_IN_SERVICE
);
67
assertEquals(ServiceState.
STATE_IN_SERVICE
, ss.getVoiceRegState());
158
ss.setVoiceRegState(ServiceState.
STATE_IN_SERVICE
);
CallManagerTest.java
103
doReturn(ServiceState.
STATE_IN_SERVICE
).when(mServiceState).getState();
330
// mPhone:
STATE_IN_SERVICE
> mPhoneSecond: state STATE_OUT_OF_SERVICE
332
assertEquals(ServiceState.
STATE_IN_SERVICE
, CallManager.getInstance().getServiceState());
334
// mPhone:
STATE_IN_SERVICE
> mPhoneSecond: state STATE_EMERGENCY_ONLY
336
assertEquals(ServiceState.
STATE_IN_SERVICE
, CallManager.getInstance().getServiceState());
338
// mPhone:
STATE_IN_SERVICE
> mPhoneSecond: state STATE_POWER_OFF
340
assertEquals(ServiceState.
STATE_IN_SERVICE
, CallManager.getInstance().getServiceState());
TelephonyEventLogTest.java
116
serviceState.setVoiceRegState(ServiceState.
STATE_IN_SERVICE
);
117
serviceState.setDataRegState(ServiceState.
STATE_IN_SERVICE
);
128
m.put(TelephonyEventLog.SERVICE_STATE_VOICE_REG_STATE, ServiceState.
STATE_IN_SERVICE
);
129
m.put(TelephonyEventLog.SERVICE_STATE_DATA_REG_STATE, ServiceState.
STATE_IN_SERVICE
);
/packages/services/Telephony/src/com/android/phone/vvm/omtp/
VvmPhoneStateListener.java
59
if (state == mPreviousState || (state != ServiceState.
STATE_IN_SERVICE
60
&& mPreviousState != ServiceState.
STATE_IN_SERVICE
)) {
69
if (state == ServiceState.
STATE_IN_SERVICE
) {
ActivationTask.java
101
!= ServiceState.
STATE_IN_SERVICE
) {
/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());
/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
546
case ServiceState.
STATE_IN_SERVICE
:
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
ServiceStateTracker.java
690
boolean isRegistered = mSS.getVoiceRegState() == ServiceState.
STATE_IN_SERVICE
||
[
all
...]
GsmCdmaPhone.java
397
if (mSST == null || mSST.mSS.getState() != ServiceState.
STATE_IN_SERVICE
) {
502
} else if (mSST.getCurrentDataConnectionState() != ServiceState.
STATE_IN_SERVICE
512
} else { /* mSST.gprsState == ServiceState.
STATE_IN_SERVICE
*/
545
if (mSST.getCurrentDataConnectionState() == ServiceState.
STATE_IN_SERVICE
) {
[
all
...]
/packages/apps/Messaging/src/com/android/messaging/util/
ConnectivityUtil.java
71
ServiceState.STATE_OUT_OF_SERVICE : ServiceState.
STATE_IN_SERVICE
;
94
ServiceState.STATE_POWER_OFF : ServiceState.
STATE_IN_SERVICE
);
/packages/apps/Bluetooth/src/com/android/bluetooth/hfp/
HeadsetPhoneState.java
239
mService = (serviceState.getState() == ServiceState.
STATE_IN_SERVICE
) ?
/packages/apps/CellBroadcastReceiver/src/com/android/cellbroadcastreceiver/
CellBroadcastReceiver.java
65
if (((newState == ServiceState.
STATE_IN_SERVICE
) ||
/packages/services/Telephony/tests/src/com/android/services/telephony/
EmergencyCallStateListenerTest.java
83
state.setState(ServiceState.
STATE_IN_SERVICE
);
/frameworks/base/telephony/java/android/telephony/
ServiceState.java
46
public static final int
STATE_IN_SERVICE
= 0;
406
* @see #
STATE_IN_SERVICE
420
* @see #
STATE_IN_SERVICE
[
all
...]
/external/sl4a/Common/src/com/googlecode/android_scripting/facade/telephony/
TelephonyUtils.java
346
case ServiceState.
STATE_IN_SERVICE
:
/frameworks/base/packages/Keyguard/src/com/android/keyguard/
CarrierText.java
126
if (ss != null && ss.getDataRegState() == ServiceState.
STATE_IN_SERVICE
) {
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
CdmaSMSDispatcher.java
248
if (!isIms() && ss != ServiceState.
STATE_IN_SERVICE
) {
/packages/services/Telephony/src/com/android/services/telephony/
TelephonyConnectionService.java
360
case ServiceState.
STATE_IN_SERVICE
:
[
all
...]
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/policy/
NetworkControllerBaseTest.java
162
setVoiceRegState(ServiceState.
STATE_IN_SERVICE
);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
GsmSMSDispatcher.java
282
if (!isIms() && ss != ServiceState.
STATE_IN_SERVICE
) {
/frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/
ImsPhoneBase.java
140
s.setVoiceRegState(ServiceState.
STATE_IN_SERVICE
);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/sip/
SipPhoneBase.java
108
s.setVoiceRegState(ServiceState.
STATE_IN_SERVICE
);
Completed in 502 milliseconds
1
2
3