HomeSort by relevance Sort by last modified time
    Searched refs:TelephonyIntents (Results 1 - 25 of 35) sorted by null

1 2

  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
CarrierLabel.java 29 import com.android.internal.telephony.TelephonyIntents;
64 filter.addAction(TelephonyIntents.SPN_STRINGS_UPDATED_ACTION);
82 if (TelephonyIntents.SPN_STRINGS_UPDATED_ACTION.equals(action)) {
83 updateNetworkName(intent.getBooleanExtra(TelephonyIntents.EXTRA_SHOW_SPN, false),
84 intent.getStringExtra(TelephonyIntents.EXTRA_SPN),
85 intent.getBooleanExtra(TelephonyIntents.EXTRA_SHOW_PLMN, false),
86 intent.getStringExtra(TelephonyIntents.EXTRA_PLMN));
PhoneStatusBarPolicy.java 43 import com.android.internal.telephony.TelephonyIntents;
129 else if (action.equals(TelephonyIntents.ACTION_SIM_STATE_CHANGED)) {
149 filter.addAction(TelephonyIntents.ACTION_SIM_STATE_CHANGED);
  /packages/experimental/ExampleImsFramework/src/com/android/example/imsframework/
ImsFrameworkApp.java 34 import com.android.internal.telephony.TelephonyIntents;
57 intentFilter.addAction(TelephonyIntents.ACTION_ANY_DATA_CONNECTION_STATE_CHANGED);
58 intentFilter.addAction(TelephonyIntents.ACTION_SIM_STATE_CHANGED);
59 intentFilter.addAction(TelephonyIntents.ACTION_RADIO_TECHNOLOGY_CHANGED);
60 intentFilter.addAction(TelephonyIntents.ACTION_SERVICE_STATE_CHANGED);
75 } else if (action.equals(TelephonyIntents.ACTION_ANY_DATA_CONNECTION_STATE_CHANGED)) {
85 } else if (action.equals(TelephonyIntents.ACTION_SIM_STATE_CHANGED)) {
95 } else if (action.equals(TelephonyIntents.ACTION_RADIO_TECHNOLOGY_CHANGED)) {
98 } else if (action.equals(TelephonyIntents.ACTION_SERVICE_STATE_CHANGED)) {
  /frameworks/base/telephony/java/com/android/internal/telephony/
TelephonyIntents.java 26 public class TelephonyIntents {
  /packages/apps/VoiceDialer/src/com/android/voicedialer/
VoiceDialerReceiver.java 23 import com.android.internal.telephony.TelephonyIntents;
53 else if (TelephonyIntents.SECRET_CODE_ACTION.equals(action) && "8351".equals(host)) {
59 else if (TelephonyIntents.SECRET_CODE_ACTION.equals(action) && "8350".equals(host)) {
  /packages/apps/Phone/src/com/android/phone/
EmergencyCallbackModeService.java 41 import com.android.internal.telephony.TelephonyIntents;
85 filter.addAction(TelephonyIntents.ACTION_EMERGENCY_CALLBACK_MODE_CHANGED);
86 filter.addAction(TelephonyIntents.ACTION_SHOW_NOTICE_ECM_BLOCK_OTHERS);
118 TelephonyIntents.ACTION_EMERGENCY_CALLBACK_MODE_CHANGED)) {
125 TelephonyIntents.ACTION_SHOW_NOTICE_ECM_BLOCK_OTHERS)) {
127 new Intent(TelephonyIntents.ACTION_SHOW_NOTICE_ECM_BLOCK_OTHERS)
EmergencyCallbackModeExitDialog.java 43 import com.android.internal.telephony.TelephonyIntents;
99 filter.addAction(TelephonyIntents.ACTION_EMERGENCY_CALLBACK_MODE_CHANGED);
175 TelephonyIntents.ACTION_SHOW_NOTICE_ECM_BLOCK_OTHERS)) {
300 TelephonyIntents.ACTION_EMERGENCY_CALLBACK_MODE_CHANGED)) {
SpecialCharSequenceMgr.java 26 import com.android.internal.telephony.TelephonyIntents;
155 Intent intent = new Intent(TelephonyIntents.SECRET_CODE_ACTION,
PhoneGlobals.java 69 import com.android.internal.telephony.TelephonyIntents;
562 intentFilter.addAction(TelephonyIntents.ACTION_ANY_DATA_CONNECTION_STATE_CHANGED);
565 intentFilter.addAction(TelephonyIntents.ACTION_SIM_STATE_CHANGED);
566 intentFilter.addAction(TelephonyIntents.ACTION_RADIO_TECHNOLOGY_CHANGED);
567 intentFilter.addAction(TelephonyIntents.ACTION_SERVICE_STATE_CHANGED);
568 intentFilter.addAction(TelephonyIntents.ACTION_EMERGENCY_CALLBACK_MODE_CHANGED);
    [all...]
  /packages/apps/Settings/src/com/android/settings/
TestingSettingsBroadcastReceiver.java 4 import static com.android.internal.telephony.TelephonyIntents.SECRET_CODE_ACTION;
ApnSettings.java 47 import com.android.internal.telephony.TelephonyIntents;
94 TelephonyIntents.ACTION_ANY_DATA_CONNECTION_STATE_CHANGED)) {
126 TelephonyIntents.ACTION_ANY_DATA_CONNECTION_STATE_CHANGED);
IccLockSettings.java 36 import com.android.internal.telephony.TelephonyIntents;
121 if (TelephonyIntents.ACTION_SIM_STATE_CHANGED.equals(action)) {
197 final IntentFilter filter = new IntentFilter(TelephonyIntents.ACTION_SIM_STATE_CHANGED);
WirelessSettings.java 42 import com.android.internal.telephony.TelephonyIntents;
89 new Intent(TelephonyIntents.ACTION_SHOW_NOTICE_ECM_BLOCK_OTHERS, null),
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
PhoneStateIntentReceiver.java 136 mFilter.addAction(TelephonyIntents.ACTION_SERVICE_STATE_CHANGED);
146 mFilter.addAction(TelephonyIntents.ACTION_SIGNAL_STRENGTH_CHANGED);
166 if (TelephonyIntents.ACTION_SIGNAL_STRENGTH_CHANGED.equals(action)) {
185 } else if (TelephonyIntents.ACTION_SERVICE_STATE_CHANGED.equals(action)) {
  /frameworks/base/services/java/com/android/server/
NetworkTimeUpdateService.java 39 import com.android.internal.telephony.TelephonyIntents;
129 intentFilter.addAction(TelephonyIntents.ACTION_NETWORK_SET_TIME);
130 intentFilter.addAction(TelephonyIntents.ACTION_NETWORK_SET_TIMEZONE);
237 if (TelephonyIntents.ACTION_NETWORK_SET_TIME.equals(action)) {
239 } else if (TelephonyIntents.ACTION_NETWORK_SET_TIMEZONE.equals(action)) {
TelephonyRegistry.java 54 import com.android.internal.telephony.TelephonyIntents;
652 Intent intent = new Intent(TelephonyIntents.ACTION_SERVICE_STATE_CHANGED);
669 Intent intent = new Intent(TelephonyIntents.ACTION_SIGNAL_STRENGTH_CHANGED);
708 Intent intent = new Intent(TelephonyIntents.ACTION_ANY_DATA_CONNECTION_STATE_CHANGED);
735 Intent intent = new Intent(TelephonyIntents.ACTION_DATA_CONNECTION_FAILED);
  /packages/apps/Mms/src/com/android/mms/util/
DownloadManager.java 38 import com.android.internal.telephony.TelephonyIntents;
90 if (TelephonyIntents.ACTION_SERVICE_STATE_CHANGED.equals(intent.getAction())) {
120 new IntentFilter(TelephonyIntents.ACTION_SERVICE_STATE_CHANGED));
  /frameworks/base/core/java/android/net/
MobileDataStateTracker.java 38 import com.android.internal.telephony.TelephonyIntents;
103 filter.addAction(TelephonyIntents.ACTION_ANY_DATA_CONNECTION_STATE_CHANGED);
104 filter.addAction(TelephonyIntents.ACTION_DATA_CONNECTION_FAILED);
174 if (intent.getAction().equals(TelephonyIntents.
269 equals(TelephonyIntents.ACTION_DATA_CONNECTION_FAILED)) {
  /frameworks/base/policy/src/com/android/internal/policy/impl/keyguard/
KeyguardUpdateMonitor.java 49 import com.android.internal.telephony.TelephonyIntents;
250 } else if (TelephonyIntents.SPN_STRINGS_UPDATED_ACTION.equals(action)) {
262 } else if (TelephonyIntents.ACTION_SIM_STATE_CHANGED.equals(action)) {
300 * {@link com.android.internal.telephony.TelephonyIntents#ACTION_SIM_STATE_CHANGED} broadcast,
314 if (!TelephonyIntents.ACTION_SIM_STATE_CHANGED.equals(intent.getAction())) {
469 filter.addAction(TelephonyIntents.ACTION_SIM_STATE_CHANGED);
471 filter.addAction(TelephonyIntents.SPN_STRINGS_UPDATED_ACTION);
795 * @param intent The intent with action {@link TelephonyIntents#SPN_STRINGS_UPDATED_ACTION}
799 if (intent.getBooleanExtra(TelephonyIntents.EXTRA_SHOW_PLMN, false)) {
800 final String plmn = intent.getStringExtra(TelephonyIntents.EXTRA_PLMN)
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
CdmaServiceStateTracker.java 54 import com.android.internal.telephony.TelephonyIntents;
536 Intent intent = new Intent(TelephonyIntents.SPN_STRINGS_UPDATED_ACTION);
538 intent.putExtra(TelephonyIntents.EXTRA_SHOW_SPN, false);
539 intent.putExtra(TelephonyIntents.EXTRA_SPN, "");
540 intent.putExtra(TelephonyIntents.EXTRA_SHOW_PLMN, showPlmn);
541 intent.putExtra(TelephonyIntents.EXTRA_PLMN, plmn);
    [all...]
  /packages/apps/Dialer/src/com/android/dialer/
SpecialCharSequenceMgr.java 43 import com.android.internal.telephony.TelephonyIntents;
139 Intent intent = new Intent(TelephonyIntents.SECRET_CODE_ACTION,
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
NetworkController.java 47 import com.android.internal.telephony.TelephonyIntents;
238 filter.addAction(TelephonyIntents.ACTION_SIM_STATE_CHANGED);
239 filter.addAction(TelephonyIntents.SPN_STRINGS_UPDATED_ACTION);
396 } else if (action.equals(TelephonyIntents.ACTION_SIM_STATE_CHANGED)) {
400 } else if (action.equals(TelephonyIntents.SPN_STRINGS_UPDATED_ACTION)) {
401 updateNetworkName(intent.getBooleanExtra(TelephonyIntents.EXTRA_SHOW_SPN, false),
402 intent.getStringExtra(TelephonyIntents.EXTRA_SPN),
403 intent.getBooleanExtra(TelephonyIntents.EXTRA_SHOW_PLMN, false),
404 intent.getStringExtra(TelephonyIntents.EXTRA_PLMN));
    [all...]
  /packages/apps/Mms/src/com/android/mms/transaction/
SmsReceiverService.java 54 import com.android.internal.telephony.TelephonyIntents;
210 } else if (TelephonyIntents.ACTION_SERVICE_STATE_CHANGED.equals(action)) {
673 intentFilter.addAction(TelephonyIntents.ACTION_SERVICE_STATE_CHANGED);
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
GsmServiceStateTracker.java 64 import com.android.internal.telephony.TelephonyIntents;
556 Intent intent = new Intent(TelephonyIntents.SPN_STRINGS_UPDATED_ACTION);
558 intent.putExtra(TelephonyIntents.EXTRA_SHOW_SPN, showSpn);
559 intent.putExtra(TelephonyIntents.EXTRA_SPN, spn);
560 intent.putExtra(TelephonyIntents.EXTRA_SHOW_PLMN, showPlmn);
561 intent.putExtra(TelephonyIntents.EXTRA_PLMN, plmn);
    [all...]
  /frameworks/base/policy/src/com/android/internal/policy/impl/
GlobalActions.java 21 import com.android.internal.telephony.TelephonyIntents;
121 filter.addAction(TelephonyIntents.ACTION_EMERGENCY_CALLBACK_MODE_CHANGED);
206 new Intent(TelephonyIntents.ACTION_SHOW_NOTICE_ECM_BLOCK_OTHERS, null);
832 } else if (TelephonyIntents.ACTION_EMERGENCY_CALLBACK_MODE_CHANGED.equals(action)) {
    [all...]

Completed in 2486 milliseconds

1 2