Home
last modified time | relevance | path

Searched refs:TelephonyIntents (Results 1 – 25 of 53) sorted by relevance

123

/frameworks/base/packages/CarrierDefaultApp/src/com/android/carrierdefaultapp/
DCustomConfigLoader.java26 import com.android.internal.telephony.TelephonyIntents;
83 case TelephonyIntents.ACTION_CARRIER_SIGNAL_REDIRECTED: in loadCarrierActionList()
87 case TelephonyIntents.ACTION_CARRIER_SIGNAL_REQUEST_NETWORK_FAILED: in loadCarrierActionList()
90 arg1 = intent.getStringExtra(TelephonyIntents.EXTRA_APN_TYPE_KEY); in loadCarrierActionList()
91 arg2 = intent.getStringExtra(TelephonyIntents.EXTRA_ERROR_CODE_KEY); in loadCarrierActionList()
93 case TelephonyIntents.ACTION_CARRIER_SIGNAL_RESET: in loadCarrierActionList()
97 case TelephonyIntents.ACTION_CARRIER_SIGNAL_DEFAULT_NETWORK_AVAILABLE: in loadCarrierActionList()
100 arg1 = String.valueOf(intent.getBooleanExtra(TelephonyIntents in loadCarrierActionList()
DProvisionObserver.java32 import com.android.internal.telephony.TelephonyIntents;
96 case TelephonyIntents.ACTION_CARRIER_SIGNAL_REDIRECTED: in isDeferredForProvision()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
DCarrierSignalAgent.java99 TelephonyIntents.ACTION_CARRIER_SIGNAL_PCO_VALUE,
100 TelephonyIntents.ACTION_CARRIER_SIGNAL_REDIRECTED,
101 TelephonyIntents.ACTION_CARRIER_SIGNAL_REQUEST_NETWORK_FAILED,
102 TelephonyIntents.ACTION_CARRIER_SIGNAL_RESET,
103 TelephonyIntents.ACTION_CARRIER_SIGNAL_DEFAULT_NETWORK_AVAILABLE));
149 Intent intent = new Intent(TelephonyIntents in handleMessage()
152 TelephonyIntents.EXTRA_DEFAULT_NETWORK_AVAILABLE_KEY, true); in handleMessage()
160 Intent intent = new Intent(TelephonyIntents in handleMessage()
163 TelephonyIntents.EXTRA_DEFAULT_NETWORK_AVAILABLE_KEY, false); in handleMessage()
DPhoneStateIntentReceiver.java136 mFilter.addAction(TelephonyIntents.ACTION_SERVICE_STATE_CHANGED); in notifyServiceState()
146 mFilter.addAction(TelephonyIntents.ACTION_SIGNAL_STRENGTH_CHANGED); in notifySignalStrength()
166 if (TelephonyIntents.ACTION_SIGNAL_STRENGTH_CHANGED.equals(action)) { in onReceive()
185 } else if (TelephonyIntents.ACTION_SERVICE_STATE_CHANGED.equals(action)) { in onReceive()
DCarrierActionAgent.java91 if (TelephonyIntents.ACTION_SIM_STATE_CHANGED.equals(action)){
92 if (intent.getBooleanExtra(TelephonyIntents.EXTRA_REBROADCAST_ON_UNLOCK, false)) {
105 new IntentFilter(TelephonyIntents.ACTION_SIM_STATE_CHANGED)); in CarrierActionAgent()
226 new Intent(TelephonyIntents.ACTION_CARRIER_SIGNAL_RESET)); in carrierActionReset()
DTimeServiceHelper.java155 Intent intent = new Intent(TelephonyIntents.ACTION_NETWORK_SET_TIME); in setDeviceTime()
188 Intent intent = new Intent(TelephonyIntents.ACTION_NETWORK_SET_TIMEZONE); in setDeviceTimeZoneStatic()
DSimActivationTracker.java82 if (TelephonyIntents.ACTION_SIM_STATE_CHANGED.equals(action)){ in SimActivationTracker()
93 IntentFilter intentFilter = new IntentFilter(TelephonyIntents.ACTION_SIM_STATE_CHANGED); in SimActivationTracker()
DProxyController.java345 Intent intent = new Intent(TelephonyIntents.ACTION_SET_RADIO_CAPABILITY_FAILED); in onStartRadioCapabilityResponse()
557 intent = new Intent(TelephonyIntents.ACTION_SET_RADIO_CAPABILITY_DONE); in completeRadioCapabilityTransaction()
558 intent.putParcelableArrayListExtra(TelephonyIntents.EXTRA_RADIO_ACCESS_FAMILY, in completeRadioCapabilityTransaction()
567 intent = new Intent(TelephonyIntents.ACTION_SET_RADIO_CAPABILITY_FAILED); in completeRadioCapabilityTransaction()
/frameworks/base/packages/SystemUI/tests/src/com/android/keyguard/
DKeyguardUpdateMonitorTest.java27 import com.android.internal.telephony.TelephonyIntents;
56 Intent intent = new Intent(TelephonyIntents.ACTION_SIM_STATE_CHANGED); in testIgnoresSimStateCallback_rebroadcast()
66 intent.putExtra(TelephonyIntents.EXTRA_REBROADCAST_ON_UNLOCK, true); in testIgnoresSimStateCallback_rebroadcast()
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/uicc/
DUiccStateChangedLauncherTest.java38 import com.android.internal.telephony.TelephonyIntents;
114 assertEquals(TelephonyIntents.ACTION_SIM_STATE_CHANGED, in testProvisioningPackageSet()
125 assertEquals(TelephonyIntents.ACTION_SIM_STATE_CHANGED, in testProvisioningPackageSet()
140 assertEquals(TelephonyIntents.ACTION_SIM_STATE_CHANGED, in testProvisioningPackageSet()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
DEmergencyCryptkeeperText.java36 import com.android.internal.telephony.TelephonyIntents;
131 new IntentFilter(TelephonyIntents.SPN_STRINGS_UPDATED_ACTION)); in update()
133 displayText = i.getStringExtra(TelephonyIntents.EXTRA_PLMN); in update()
DMobileSignalController.java36 import com.android.internal.telephony.TelephonyIntents;
373 if (action.equals(TelephonyIntents.SPN_STRINGS_UPDATED_ACTION)) { in handleBroadcast()
374 updateNetworkName(intent.getBooleanExtra(TelephonyIntents.EXTRA_SHOW_SPN, false), in handleBroadcast()
375 intent.getStringExtra(TelephonyIntents.EXTRA_SPN), in handleBroadcast()
376 intent.getStringExtra(TelephonyIntents.EXTRA_DATA_SPN), in handleBroadcast()
377 intent.getBooleanExtra(TelephonyIntents.EXTRA_SHOW_PLMN, false), in handleBroadcast()
378 intent.getStringExtra(TelephonyIntents.EXTRA_PLMN)); in handleBroadcast()
380 } else if (action.equals(TelephonyIntents.ACTION_DEFAULT_DATA_SUBSCRIPTION_CHANGED)) { in handleBroadcast()
DNetworkControllerImpl.java49 import com.android.internal.telephony.TelephonyIntents;
276 filter.addAction(TelephonyIntents.ACTION_SIM_STATE_CHANGED); in registerListeners()
277 filter.addAction(TelephonyIntents.ACTION_DEFAULT_DATA_SUBSCRIPTION_CHANGED); in registerListeners()
278 filter.addAction(TelephonyIntents.ACTION_DEFAULT_VOICE_SUBSCRIPTION_CHANGED); in registerListeners()
279 filter.addAction(TelephonyIntents.ACTION_SERVICE_STATE_CHANGED); in registerListeners()
280 filter.addAction(TelephonyIntents.SPN_STRINGS_UPDATED_ACTION); in registerListeners()
450 case TelephonyIntents.ACTION_DEFAULT_VOICE_SUBSCRIPTION_CHANGED: in onReceive()
454 case TelephonyIntents.ACTION_DEFAULT_DATA_SUBSCRIPTION_CHANGED: in onReceive()
462 case TelephonyIntents.ACTION_SIM_STATE_CHANGED: in onReceive()
464 if (intent.getBooleanExtra(TelephonyIntents.EXTRA_REBROADCAST_ON_UNLOCK, false)) { in onReceive()
[all …]
/frameworks/base/services/core/java/com/android/server/connectivity/tethering/
DSimChangeListener.java31 import com.android.internal.telephony.TelephonyIntents;
53 filter.addAction(TelephonyIntents.ACTION_SIM_STATE_CHANGED); in makeIntentFilter()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/policy/
DNetworkControllerSignalTest.java32 import com.android.internal.telephony.TelephonyIntents;
412 intent.setAction(TelephonyIntents.SPN_STRINGS_UPDATED_ACTION); in createStringsUpdatedIntent()
414 intent.putExtra(TelephonyIntents.EXTRA_SHOW_SPN, showSpn); in createStringsUpdatedIntent()
415 intent.putExtra(TelephonyIntents.EXTRA_SPN, spn); in createStringsUpdatedIntent()
417 intent.putExtra(TelephonyIntents.EXTRA_SHOW_PLMN, showPlmn); in createStringsUpdatedIntent()
418 intent.putExtra(TelephonyIntents.EXTRA_PLMN, plmn); in createStringsUpdatedIntent()
/frameworks/base/packages/SystemUI/src/com/android/keyguard/
DCarrierText.java40 import com.android.internal.telephony.TelephonyIntents;
221 new IntentFilter(TelephonyIntents.SPN_STRINGS_UPDATED_ACTION)); in updateCarrierText()
225 if (i.getBooleanExtra(TelephonyIntents.EXTRA_SHOW_SPN, false)) { in updateCarrierText()
226 spn = i.getStringExtra(TelephonyIntents.EXTRA_SPN); in updateCarrierText()
228 if (i.getBooleanExtra(TelephonyIntents.EXTRA_SHOW_PLMN, false)) { in updateCarrierText()
229 plmn = i.getStringExtra(TelephonyIntents.EXTRA_PLMN); in updateCarrierText()
/frameworks/base/services/core/java/com/android/server/connectivity/
DDataConnectionStats.java33 import com.android.internal.telephony.TelephonyIntents;
63 filter.addAction(TelephonyIntents.ACTION_SIM_STATE_CHANGED); in startMonitoring()
72 if (action.equals(TelephonyIntents.ACTION_SIM_STATE_CHANGED)) { in onReceive()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/
DUiccStateChangedLauncher.java27 import com.android.internal.telephony.TelephonyIntents;
92 Intent intent = new Intent(TelephonyIntents.ACTION_SIM_STATE_CHANGED); in notifyStateChanged()
/frameworks/base/packages/CarrierDefaultApp/tests/unit/src/com/android/carrierdefaultapp/
DCarrierDefaultReceiverTest.java29 import com.android.internal.telephony.TelephonyIntents;
91 Intent intent = new Intent(TelephonyIntents.ACTION_CARRIER_SIGNAL_REDIRECTED); in testOnReceiveRedirection()
/frameworks/base/services/core/java/com/android/server/
DNetworkTimeUpdateService.java42 import com.android.internal.telephony.TelephonyIntents;
140 intentFilter.addAction(TelephonyIntents.ACTION_NETWORK_SET_TIME); in registerForTelephonyIntents()
250 if (TelephonyIntents.ACTION_NETWORK_SET_TIME.equals(action)) {
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/tiles/
DAirplaneModeTile.java33 import com.android.internal.telephony.TelephonyIntents;
74 new Intent(TelephonyIntents.ACTION_SHOW_NOTICE_ECM_BLOCK_OTHERS), 0); in handleClick()
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
DSubscriptionControllerTest.java248 assertEquals(TelephonyIntents.ACTION_SUBINFO_RECORD_UPDATED, in testChangeSIMProperty()
274 assertEquals(TelephonyIntents.ACTION_SUBINFO_RECORD_UPDATED, in testSetGetDisplayNameSrc()
323 assertEquals(TelephonyIntents.ACTION_SUBINFO_RECORD_UPDATED, in testSetGetMCCMNC()
340 assertEquals(TelephonyIntents.ACTION_DEFAULT_DATA_SUBSCRIPTION_CHANGED, intent.getAction()); in testSetDefaultDataSubId()
DCarrierActionAgentTest.java104 final Intent intent = new Intent(TelephonyIntents.ACTION_SIM_STATE_CHANGED); in testCarrierActionResetOnAPM()
146 final Intent intent = new Intent(TelephonyIntents.ACTION_SIM_STATE_CHANGED); in testCarrierActionResetOnAPNChange()
/frameworks/base/telephony/java/com/android/internal/telephony/
DTelephonyIntents.java30 public class TelephonyIntents { class
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/mocks/
DSubscriptionControllerMock.java34 import com.android.internal.telephony.TelephonyIntents;
89 Intent intent = new Intent(TelephonyIntents.ACTION_DEFAULT_DATA_SUBSCRIPTION_CHANGED); in broadcastDefaultDataSubIdChanged()

123