OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:getServiceState
(Results
1 - 25
of
38
) sorted by null
1
2
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
CallManagerTest.java
321
doReturn(mSecondServiceState).when(mSecondPhone).
getServiceState
();
332
assertEquals(ServiceState.STATE_IN_SERVICE, CallManager.getInstance().
getServiceState
());
336
assertEquals(ServiceState.STATE_IN_SERVICE, CallManager.getInstance().
getServiceState
());
340
assertEquals(ServiceState.STATE_IN_SERVICE, CallManager.getInstance().
getServiceState
());
346
CallManager.getInstance().
getServiceState
());
351
CallManager.getInstance().
getServiceState
());
357
CallManager.getInstance().
getServiceState
());
TelephonyTest.java
341
doReturn(mServiceState).when(mPhone).
getServiceState
();
342
doReturn(mServiceState).when(mImsPhone).
getServiceState
();
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
CdmaSMSDispatcher.java
238
+ " SS=" + mPhone.
getServiceState
().getState());
246
int ss = mPhone.
getServiceState
().getState();
256
int currentDataNetwork = mPhone.
getServiceState
().getDataNetworkType();
260
&& mPhone.
getServiceState
().getVoiceNetworkType()
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/cdma/
CdmaSmsDispatcherTest.java
78
doReturn(mServiceState).when(mPhone).
getServiceState
();
/frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
GsmSMSDispatcher.java
257
+ " SS=" + mPhone.
getServiceState
().getState());
272
+ " SS=" + mPhone.
getServiceState
().getState());
280
int ss = mPhone.
getServiceState
().getState();
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
GsmCdmaPhone.java
396
public ServiceState
getServiceState
() {
401
mImsPhone.
getServiceState
());
[
all
...]
PhoneStateIntentReceiver.java
86
public ServiceState
getServiceState
() {
DefaultPhoneNotifier.java
76
ServiceState ss = sender.
getServiceState
();
179
ServiceState ss = sender.
getServiceState
();
PhoneInternalInterface.java
216
ServiceState
getServiceState
();
483
* {@link #
getServiceState
()}.{@link
486
*
getServiceState
().getState() will not change immediately after this call.
CallManager.java
279
public int
getServiceState
() {
283
int serviceState = phone.
getServiceState
().getState();
307
public int
getServiceState
(int subId) {
312
int serviceState = phone.
getServiceState
().getState();
[
all
...]
/packages/services/Telephony/src/com/android/phone/
HfaLogic.java
141
onServiceStateChange(phone.
getServiceState
());
OtaStartupReceiver.java
143
if (app.mCM.
getServiceState
() != ServiceState.STATE_IN_SERVICE) {
CallController.java
294
mCM.
getServiceState
());
323
phone.
getServiceState
().getState());
EmergencyCallHelper.java
269
int serviceState = mCM.getDefaultPhone().
getServiceState
().getState();
PhoneInterfaceManager.java
[
all
...]
/packages/services/Telephony/src/com/android/services/telephony/
EmergencyCallHelper.java
197
int serviceState = mPhone.
getServiceState
().getState();
TelephonyConnectionService.java
223
int state = phone.
getServiceState
().getState();
225
if (phone.
getServiceState
().getDataNetworkType() == TelephonyManager.NETWORK_TYPE_LTE) {
226
state = phone.
getServiceState
().getDataRegState();
598
.
getServiceState
().getState())) {
661
return ServiceState.STATE_IN_SERVICE == phone.
getServiceState
().getState() ||
662
phone.
getServiceState
().isEmergencyOnly();
[
all
...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/
DcTracker.java
[
all
...]
DataConnection.java
403
ServiceState ss = mPhone.
getServiceState
();
405
mDataRegState = mPhone.
getServiceState
().getDataRegState();
479
if (mPhone.
getServiceState
().getDataRoamingFromRegistration()) {
513
|| (mPhone.
getServiceState
().getRilDataRadioTechnology()
[
all
...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/
ImsPhoneBase.java
136
public ServiceState
getServiceState
() {
242
int serviceState =
getServiceState
().getState();
/frameworks/opt/telephony/src/java/com/android/internal/telephony/sip/
SipPhoneBase.java
104
public ServiceState
getServiceState
() {
205
int serviceState =
getServiceState
().getState();
SipPhone.java
387
public ServiceState
getServiceState
() {
390
return super.
getServiceState
();
[
all
...]
/packages/apps/Settings/src/com/android/settings/deviceinfo/
SimStatus.java
209
updateServiceState(mPhone.
getServiceState
());
357
final int state = mPhone.
getServiceState
().getState();
/external/sl4a/Common/src/com/googlecode/android_scripting/facade/telephony/
TelephonyEvents.java
228
public ServiceState
getServiceState
() {
/packages/apps/Settings/src/com/android/settings/
RadioInfo.java
[
all
...]
Completed in 460 milliseconds
1
2