Home
last modified time | relevance | path

Searched refs:ACTION_SIM_STATE_CHANGED (Results 1 – 19 of 19) sorted by relevance

/frameworks/base/telephony/java/com/android/internal/telephony/
DTelephonyIntents.java180 public static final String ACTION_SIM_STATE_CHANGED field in TelephonyIntents
181 = Intent.ACTION_SIM_STATE_CHANGED;
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/uicc/
DUiccStateChangedLauncherTest.java113 assertEquals(TelephonyIntents.ACTION_SIM_STATE_CHANGED, in testProvisioningPackageSet()
124 assertEquals(TelephonyIntents.ACTION_SIM_STATE_CHANGED, in testProvisioningPackageSet()
139 assertEquals(TelephonyIntents.ACTION_SIM_STATE_CHANGED, in testProvisioningPackageSet()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
DSimActivationTracker.java81 if (TelephonyIntents.ACTION_SIM_STATE_CHANGED.equals(action)){ in SimActivationTracker()
92 IntentFilter intentFilter = new IntentFilter(TelephonyIntents.ACTION_SIM_STATE_CHANGED); in SimActivationTracker()
DCarrierActionAgent.java92 if (TelephonyIntents.ACTION_SIM_STATE_CHANGED.equals(action)){
110 new IntentFilter(TelephonyIntents.ACTION_SIM_STATE_CHANGED)); in CarrierActionAgent()
DSMSDispatcher.java263 intentFilter.addAction(Intent.ACTION_SIM_STATE_CHANGED); in SMSDispatcher()
273 if (Intent.ACTION_SIM_STATE_CHANGED.equals(intent.getAction())) {
/frameworks/opt/telephony/src/java/com/android/internal/telephony/util/
DNotificationChannelController.java129 intentFilter.addAction(Intent.ACTION_SIM_STATE_CHANGED); in NotificationChannelController()
184 } else if (Intent.ACTION_SIM_STATE_CHANGED.equals(intent.getAction())) {
/frameworks/base/services/core/java/com/android/server/am/
DDataConnectionStats.java75 filter.addAction(Intent.ACTION_SIM_STATE_CHANGED); in startMonitoring()
82 if (action.equals(Intent.ACTION_SIM_STATE_CHANGED)) { in onReceive()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/
DUiccStateChangedLauncher.java92 Intent intent = new Intent(TelephonyIntents.ACTION_SIM_STATE_CHANGED); in notifyStateChanged()
DUiccController.java777 Intent intent = new Intent(TelephonyIntents.ACTION_SIM_STATE_CHANGED); in broadcastSimStateChanged()
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
DCarrierActionAgentTest.java93 final Intent intent = new Intent(TelephonyIntents.ACTION_SIM_STATE_CHANGED); in testCarrierActionResetOnAPM()
136 final Intent intent = new Intent(TelephonyIntents.ACTION_SIM_STATE_CHANGED); in testCarrierActionResetOnAPNChange()
/frameworks/base/packages/SystemUI/tests/src/com/android/keyguard/
DKeyguardUpdateMonitorTest.java472 Intent intent = new Intent(TelephonyIntents.ACTION_SIM_STATE_CHANGED); in testIgnoresSimStateCallback_rebroadcast()
493 Intent intent = new Intent(TelephonyIntents.ACTION_SIM_STATE_CHANGED); in testTelephonyCapable_SimState_Absent()
504 Intent intent = new Intent(TelephonyIntents.ACTION_SIM_STATE_CHANGED); in testTelephonyCapable_SimState_CardIOError()
571 Intent intent = new Intent(TelephonyIntents.ACTION_SIM_STATE_CHANGED); in testTelephonyCapable_BootInitState_SimState_NotReady()
586 Intent intent = new Intent(TelephonyIntents.ACTION_SIM_STATE_CHANGED); in testTelephonyCapable_BootInitState_SimState_Ready()
627 Intent intentSimState = new Intent(TelephonyIntents.ACTION_SIM_STATE_CHANGED); in testTelephonyCapable_SimValid_SimState_Loaded()
665 Intent intent = new Intent(Intent.ACTION_SIM_STATE_CHANGED); in testHandleSimStateChange_Unknown()
676 Intent intent = new Intent(Intent.ACTION_SIM_STATE_CHANGED); in testHandleSimStateChange_Absent()
687 Intent intent = new Intent(Intent.ACTION_SIM_STATE_CHANGED); in testHandleSimStateChange_CardIOError()
699 Intent intent = new Intent(Intent.ACTION_SIM_STATE_CHANGED); in testHandleSimStateChange_CardRestricted()
[all …]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DPhoneStatusBarPolicy.java260 filter.addAction(Intent.ACTION_SIM_STATE_CHANGED); in init()
765 case Intent.ACTION_SIM_STATE_CHANGED:
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/connectivity/
DNetworkControllerImpl.java516 filter.addAction(Intent.ACTION_SIM_STATE_CHANGED); in registerListeners()
814 case Intent.ACTION_SIM_STATE_CHANGED: in onReceive()
/frameworks/base/packages/SystemUI/src/com/android/keyguard/
DKeyguardUpdateMonitor.java1696 } else if (Intent.ACTION_SIM_STATE_CHANGED.equals(action)) {
1945 if (!Intent.ACTION_SIM_STATE_CHANGED.equals(intent.getAction())) { in fromIntent()
2359 filter.addAction(Intent.ACTION_SIM_STATE_CHANGED); in start()
/frameworks/base/core/api/
Dmodule-lib-lint-baseline.txt166 BroadcastBehavior: android.content.Intent#ACTION_SIM_STATE_CHANGED:
167 Field 'ACTION_SIM_STATE_CHANGED' is missing @BroadcastBehavior
Dtest-lint-baseline.txt170 BroadcastBehavior: android.content.Intent#ACTION_SIM_STATE_CHANGED:
171 Field 'ACTION_SIM_STATE_CHANGED' is missing @BroadcastBehavior
Dsystem-lint-baseline.txt170 BroadcastBehavior: android.content.Intent#ACTION_SIM_STATE_CHANGED:
171 Field 'ACTION_SIM_STATE_CHANGED' is missing @BroadcastBehavior
Dsystem-current.txt3882 …field @Deprecated public static final String ACTION_SIM_STATE_CHANGED = "android.intent.action.SIM…
/frameworks/base/core/java/android/content/
DIntent.java4690 public static final String ACTION_SIM_STATE_CHANGED = "android.intent.action.SIM_STATE_CHANGED"; field in Intent