Home
last modified time | relevance | path

Searched refs:ACTION_SERVICE_STATE (Results 1 – 10 of 10) sorted by relevance

/frameworks/base/services/tests/mockingservicestests/src/com/android/server/am/
DBroadcastRecordTest.java493 final Intent intent1 = new Intent(Intent.ACTION_SERVICE_STATE); in testMatchesDeliveryGroup()
500 final Intent intent2 = new Intent(Intent.ACTION_SERVICE_STATE); in testMatchesDeliveryGroup()
514 final Intent intent1 = new Intent(Intent.ACTION_SERVICE_STATE); in testMatchesDeliveryGroup_withMatchingKey()
518 options1.setDeliveryGroupMatchingKey(Intent.ACTION_SERVICE_STATE, "key1"); in testMatchesDeliveryGroup_withMatchingKey()
522 final Intent intent2 = new Intent(Intent.ACTION_SERVICE_STATE); in testMatchesDeliveryGroup_withMatchingKey()
526 options2.setDeliveryGroupMatchingKey(Intent.ACTION_SERVICE_STATE, "key2"); in testMatchesDeliveryGroup_withMatchingKey()
530 final Intent intent3 = new Intent(Intent.ACTION_SERVICE_STATE); in testMatchesDeliveryGroup_withMatchingKey()
534 options3.setDeliveryGroupMatchingKey(Intent.ACTION_SERVICE_STATE, "key1"); in testMatchesDeliveryGroup_withMatchingKey()
553 final Intent intent1 = new Intent(Intent.ACTION_SERVICE_STATE); in testMatchesDeliveryGroup_withMatchingFilter()
557 final IntentFilter filter1 = new IntentFilter(Intent.ACTION_SERVICE_STATE); in testMatchesDeliveryGroup_withMatchingFilter()
[all …]
/frameworks/base/telephony/java/com/android/internal/telephony/
DTelephonyIntents.java62 public static final String ACTION_SERVICE_STATE_CHANGED = Intent.ACTION_SERVICE_STATE;
/frameworks/base/packages/SystemUI/tests/src/com/android/keyguard/
DKeyguardUpdateMonitorTest.java516 Intent intent = new Intent(Intent.ACTION_SERVICE_STATE); in testTelephonyCapable_SimInvalid_ServiceState_InService()
531 Intent intent = new Intent(Intent.ACTION_SERVICE_STATE); in testTelephonyCapable_SimValid_ServiceState_PowerOff()
553 Intent intent = new Intent(Intent.ACTION_SERVICE_STATE); in testTelephonyCapable_BootInitState_ServiceState_OutOfService()
597 Intent intent = new Intent(Intent.ACTION_SERVICE_STATE); in testTelephonyCapable_BootInitState_ServiceState_PowerOff()
610 Intent intent = new Intent(Intent.ACTION_SERVICE_STATE); in testTelephonyCapable_SimValid_ServiceState_InService()
636 Intent intentServiceState = new Intent(Intent.ACTION_SERVICE_STATE); in testTelephonyCapable_SimValid_SimState_Loaded()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/pipeline/mobile/data/repository/prod/
DMobileConnectionsRepositoryImpl.kt181 .broadcastFlow(IntentFilter(Intent.ACTION_SERVICE_STATE)) { intent, _ -> in <lambda>()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/connectivity/
DNetworkControllerImpl.java515 filter.addAction(Intent.ACTION_SERVICE_STATE); in registerListeners()
822 case Intent.ACTION_SERVICE_STATE: in onReceive()
/frameworks/base/core/api/
Dsystem-removed.txt68 …field @Deprecated public static final String ACTION_SERVICE_STATE = "android.intent.action.SERVICE…
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/pipeline/mobile/data/repository/prod/
DMobileConnectionsRepositoryTest.kt1559 return Intent(Intent.ACTION_SERVICE_STATE).apply { in <lambda>()
/frameworks/base/packages/SystemUI/src/com/android/keyguard/
DKeyguardUpdateMonitor.java1722 } else if (Intent.ACTION_SERVICE_STATE.equals(action)) {
2360 filter.addAction(Intent.ACTION_SERVICE_STATE); in start()
/frameworks/base/services/core/java/com/android/server/
DTelephonyRegistry.java3760 Intent intent = new Intent(Intent.ACTION_SERVICE_STATE); in createServiceStateIntent()
3782 .setDeliveryGroupMatchingKey(Intent.ACTION_SERVICE_STATE, in createServiceStateBroadcastOptions()
/frameworks/base/core/java/android/content/
DIntent.java4880 public static final String ACTION_SERVICE_STATE = "android.intent.action.SERVICE_STATE"; field in Intent