/packages/apps/Settings/src/com/android/settings/applications/ |
ProcStatsEntry.java | 29 import com.android.internal.app.procstats.ServiceState; 257 public void addService(ServiceState svc) { 311 public Service(ServiceState service) { 316 ServiceState.SERVICE_RUN, ProcessStats.STATE_NOTHING, 0, 0);
|
/packages/apps/Settings/src/com/android/settings/ |
RadioInfo.java | 51 import android.telephony.ServiceState; 280 public void onServiceStateChanged(ServiceState serviceState) { 281 log("onServiceStateChanged: ServiceState=" + serviceState); 282 updateServiceState(serviceState); 785 updateServiceState(ServiceState serviceState) { 786 int state = serviceState.getState(); 791 case ServiceState.STATE_IN_SERVICE [all...] |
/external/sl4a/Common/src/com/googlecode/android_scripting/facade/telephony/ |
TelephonyStateListeners.java | 27 import android.telephony.ServiceState; 210 public void onServiceStateChanged(ServiceState serviceState) { 213 serviceState, subscriptionId));
|
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/mocks/ |
TelephonyRegistryMock.java | 26 import android.telephony.ServiceState; 198 public void notifyServiceStateForPhoneId(int phoneId, int subId, ServiceState state) {
|
/packages/services/Telephony/src/com/android/services/telephony/ |
TelephonyConnectionService.java | 36 import android.telephony.ServiceState; 330 if (state == ServiceState.STATE_OUT_OF_SERVICE) { 360 case ServiceState.STATE_IN_SERVICE: 361 case ServiceState.STATE_EMERGENCY_ONLY: 363 case ServiceState.STATE_OUT_OF_SERVICE: 371 "ServiceState.STATE_OUT_OF_SERVICE")); 373 case ServiceState.STATE_POWER_OFF: 377 "ServiceState.STATE_POWER_OFF")); [all...] |
TelecomAccountRegistry.java | 40 import android.telephony.ServiceState; 468 public void onServiceStateChanged(ServiceState serviceState) { 469 int newState = serviceState.getState(); 470 if (newState == ServiceState.STATE_IN_SERVICE && mServiceState != newState) { 485 private int mServiceState = ServiceState.STATE_POWER_OFF;
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/policy/ |
NetworkControllerSignalTest.java | 24 import android.telephony.ServiceState; 78 mNetworkController.mLastServiceState = new ServiceState(); 87 mNetworkController.mLastServiceState = new ServiceState();
|
/frameworks/base/services/core/java/com/android/server/ |
TelephonyRegistry.java | 41 import android.telephony.ServiceState; 143 private ServiceState[] mServiceState; 303 mServiceState = new ServiceState[numPhones]; 319 mServiceState[i] = new ServiceState(); 538 new ServiceState(mServiceState[phoneId])); [all...] |
/frameworks/base/services/core/java/com/android/server/tv/ |
TvInputManagerService.java | 320 ServiceState serviceState = userState.serviceStateMap.get(component); 321 if (serviceState == null) { 322 // New hardware input found. Create a new ServiceState and connect to the 324 serviceState = new ServiceState(component, userId); 325 userState.serviceStateMap.put(component, serviceState); 328 inputList.addAll(serviceState.hardwareInputList); 374 ServiceState serviceState = userState.serviceStateMap.get(info.getComponent()) [all...] |
/external/ims/rcs/rcsservice/src/com/android/service/ims/presence/ |
PresenceSubscriber.java | 426 RcsPresenceInfo.ServiceState.OFFLINE, null, System.currentTimeMillis(), 427 RcsPresenceInfo.ServiceState.OFFLINE, null, System.currentTimeMillis()); 573 //only used for serviceState is offline or unknown. 605 RcsPresenceInfo.ServiceState.UNKNOWN, null, System.currentTimeMillis(), 606 RcsPresenceInfo.ServiceState.UNKNOWN, null, System.currentTimeMillis());
|
/frameworks/base/telephony/java/com/android/internal/telephony/ |
ITelephony.aidl | 31 import android.telephony.ServiceState; [all...] |
/cts/tests/tests/telephony/src/android/telephony/cts/ |
PhoneStateListenerTest.java | 24 import android.telephony.ServiceState; 95 public void onServiceStateChanged(ServiceState serviceState) {
|
/frameworks/base/services/core/java/com/android/server/location/ |
ComprehensiveCountryDetector.java | 26 import android.telephony.ServiceState; 118 * Number of {@link PhoneStateListener#onServiceStateChanged(ServiceState state)} events that 124 * Total number of {@link PhoneStateListener#onServiceStateChanged(ServiceState state)} events 439 public void onServiceStateChanged(ServiceState serviceState) { 446 if (DEBUG) Slog.d(TAG, "onServiceStateChanged: " + serviceState.getState());
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/ |
PhoneInternalInterface.java | 29 import android.telephony.ServiceState; 214 * Get the current ServiceState. Use 218 ServiceState getServiceState(); 486 * android.telephony.ServiceState#getState() getState()}. 697 * Update the ServiceState CellLocation for current network registration.
|
/packages/services/Telephony/src/com/android/phone/vvm/omtp/ |
ActivationTask.java | 29 import android.telephony.ServiceState; 101 != ServiceState.STATE_IN_SERVICE) {
|
/frameworks/base/core/java/com/android/internal/app/procstats/ |
ProcessStats.java | 38 import com.android.internal.app.procstats.ServiceState; 251 ServiceState otherSvc = otherState.mServices.valueAt(isvc); 254 ServiceState thisSvc = getServiceStateLocked(pkgName, uid, vers, 440 final ServiceState ss = pkgState.mServices.valueAt(isvc); [all...] |
/frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/ |
ImsPhoneCallTracker.java | 55 import android.telephony.ServiceState; [all...] |
/frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/ |
ApnSetting.java | 23 import android.telephony.ServiceState; 73 * To check what values can hold, refer to ServiceState.java. 80 * To check what values can hold, refer to ServiceState.java. This is a bitmask of radio 81 * technologies in ServiceState. 154 this.bearerBitmask = (bearerBitmask | ServiceState.getBitmaskForTech(bearer)); 256 bearerBitmask = ServiceState.getBitmaskFromString(a[17]);
|
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/ |
TelephonyTest.java | 45 import android.telephony.ServiceState; 131 protected ServiceState mServiceState; 409 doReturn(ServiceState.RIL_RADIO_TECHNOLOGY_UMTS).when(mServiceState).
|
GsmCdmaCallTrackerTest.java | 21 import android.telephony.ServiceState; 91 doReturn(ServiceState.STATE_IN_SERVICE).when(mServiceState).getState();
|
/packages/services/Telephony/src/com/android/phone/ |
PhoneGlobals.java | 44 import android.telephony.ServiceState; [all...] |
NetworkSetting.java | 37 import android.telephony.ServiceState; 397 ServiceState ss = tm.getServiceStateForSubscriber(phone.getSubId());
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/ |
GsmSMSDispatcher.java | 29 import android.telephony.ServiceState; 282 if (!isIms() && ss != ServiceState.STATE_IN_SERVICE) {
|
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/imsphone/ |
ImsPhoneConnectionTest.java | 25 import android.telephony.ServiceState; 246 ServiceState.RIL_RADIO_TECHNOLOGY_IWLAN + "");
|
/packages/apps/Messaging/src/com/android/messaging/datamodel/action/ |
ProcessPendingMessagesAction.java | 26 import android.telephony.ServiceState; 122 public void onPhoneStateChanged(final Context context, final int serviceState) { 123 if (serviceState == ServiceState.STATE_IN_SERVICE) {
|