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

1 2 3

  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
CarrierLabel.java 62 filter.addAction(Telephony.Intents.SPN_STRINGS_UPDATED_ACTION);
80 if (Telephony.Intents.SPN_STRINGS_UPDATED_ACTION.equals(action)) {
81 updateNetworkName(intent.getBooleanExtra(Telephony.Intents.EXTRA_SHOW_SPN, false),
82 intent.getStringExtra(Telephony.Intents.EXTRA_SPN),
83 intent.getBooleanExtra(Telephony.Intents.EXTRA_SHOW_PLMN, false),
84 intent.getStringExtra(Telephony.Intents.EXTRA_PLMN));
  /packages/apps/CellBroadcastReceiver/tests/src/com/android/cellbroadcastreceiver/
DialogSmsDisplayTests.java 22 import android.provider.Telephony.Sms.Intents;
110 Intent intent = new Intent(Intents.SMS_CB_RECEIVED_ACTION);
118 Intent intent = new Intent(Intents.SMS_CB_RECEIVED_ACTION);
126 Intent intent = new Intent(Intents.SMS_EMERGENCY_CB_RECEIVED_ACTION);
135 Intent intent = new Intent(Intents.SMS_EMERGENCY_CB_RECEIVED_ACTION);
144 Intent intent = new Intent(Intents.SMS_EMERGENCY_CB_RECEIVED_ACTION);
  /frameworks/base/core/java/android/provider/
Contacts.java     [all...]
  /packages/apps/VoiceDialer/src/com/android/voicedialer/
VoiceDialerReceiver.java 23 import android.provider.Telephony.Intents;
54 else if (Intents.SECRET_CODE_ACTION.equals(action) && "8351".equals(host)) {
60 else if (Intents.SECRET_CODE_ACTION.equals(action) && "8350".equals(host)) {
  /frameworks/base/telephony/java/com/android/internal/telephony/
WapPushOverSms.java 23 import android.provider.Telephony.Sms.Intents;
56 * @return a result code from {@link Telephony.Sms.Intents}, or
72 return Intents.RESULT_SMS_HANDLED;
85 return Intents.RESULT_SMS_GENERIC_ERROR;
106 return Intents.RESULT_SMS_GENERIC_ERROR;
146 return Intents.RESULT_SMS_HANDLED;
169 return Intents.RESULT_SMS_HANDLED;
204 Intent intent = new Intent(Intents.WAP_PUSH_RECEIVED_ACTION);
219 Intent intent = new Intent(Intents.WAP_PUSH_RECEIVED_ACTION);
237 Intent intent = new Intent(Intents.WAP_PUSH_RECEIVED_ACTION)
    [all...]
SMSDispatcher.java 39 import android.provider.Telephony.Sms.Intents;
247 // Register for device storage intents. Use these to notify the RIL
306 boolean handled = (result == Intents.RESULT_SMS_HANDLED);
311 notifyAndAcknowledgeLastIncomingSms(false, Intents.RESULT_SMS_GENERIC_ERROR, null);
432 Intent intent = new Intent(Intents.SIM_FULL_ACTION);
562 * @return a result code from {@link Telephony.Sms.Intents}, or
574 * @return a result code from {@link Telephony.Sms.Intents}, or
605 return Intents.RESULT_SMS_HANDLED;
627 return Intents.RESULT_SMS_GENERIC_ERROR;
670 Intent intent = new Intent(Intents.SMS_RECEIVED_ACTION)
    [all...]
  /packages/apps/Mms/src/com/android/mms/transaction/
SmsReceiver.java 25 import android.provider.Telephony.Sms.Intents;
53 if (!privileged && intent.getAction().equals(Intents.SMS_RECEIVED_ACTION)) {
SmsRejectedReceiver.java 44 Telephony.Sms.Intents.SMS_REJECTED_ACTION.equals(intent.getAction())) {
47 boolean outOfMemory = reason == Telephony.Sms.Intents.RESULT_SMS_OUT_OF_MEMORY;
MmsSystemEventReceiver.java 63 if (action.equals(Mms.Intents.CONTENT_CHANGED_ACTION)) {
64 Uri changed = (Uri) intent.getParcelableExtra(Mms.Intents.DELETED_CONTENTS);
SimFullReceiver.java 41 Telephony.Sms.Intents.SIM_FULL_ACTION.equals(intent.getAction())) {
  /development/samples/ApiDemos/src/com/example/android/apis/app/
Intents.java 28 public class Intents extends Activity {
33 setContentView(R.layout.intents);
  /packages/apps/Settings/src/com/android/settings/
TestingSettingsBroadcastReceiver.java 4 import static android.provider.Telephony.Intents.SECRET_CODE_ACTION;
  /packages/apps/CellBroadcastReceiver/src/com/android/cellbroadcastreceiver/
CellBroadcastReceiver.java 51 } else if (Telephony.Sms.Intents.SMS_EMERGENCY_CB_RECEIVED_ACTION.equals(action) ||
52 Telephony.Sms.Intents.SMS_CB_RECEIVED_ACTION.equals(action)) {
CellBroadcastAlertService.java 50 if (Telephony.Sms.Intents.SMS_EMERGENCY_CB_RECEIVED_ACTION.equals(action) ||
51 Telephony.Sms.Intents.SMS_CB_RECEIVED_ACTION.equals(action)) {
219 // This line is needed to make this intent compare differently than the other intents
  /frameworks/base/telephony/java/com/android/internal/telephony/cdma/
CdmaSMSDispatcher.java 33 import android.provider.Telephony.Sms.Intents;
106 return Intents.RESULT_SMS_GENERIC_ERROR;
119 return Intents.RESULT_SMS_HANDLED;
152 return Intents.RESULT_SMS_HANDLED;
159 return Intents.RESULT_SMS_OUT_OF_MEMORY;
173 return Intents.RESULT_SMS_UNSUPPORTED;
226 * @return a result code from {@link Telephony.Sms.Intents}, or
242 return Intents.RESULT_SMS_HANDLED;
291 return Intents.RESULT_SMS_HANDLED;
316 return Intents.RESULT_SMS_GENERIC_ERROR
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/ui/
ShowOrCreateActivity.java 37 import android.provider.ContactsContract.Intents;
47 * {@link Intents#SHOW_OR_CREATE_CONTACT}.
113 mCreateDescrip = intent.getStringExtra(Intents.EXTRA_CREATE_DESCRIPTION);
119 mCreateForce = intent.getBooleanExtra(Intents.EXTRA_FORCE_CREATE, false);
123 mCreateExtras.putString(Intents.Insert.EMAIL, ssp);
129 mCreateExtras.putString(Intents.Insert.PHONE, ssp);
  /packages/apps/CellBroadcastReceiver/tests/src/com/android/cellbroadcastreceiver/tests/
SendTestMessages.java 23 import android.provider.Telephony.Sms.Intents;
413 Intent intent = new Intent(Intents.SMS_CB_RECEIVED_ACTION);
422 Intent intent = new Intent(Intents.SMS_CB_RECEIVED_ACTION);
430 Intent intent = new Intent(Intents.SMS_CB_RECEIVED_ACTION);
438 Intent intent = new Intent(Intents.SMS_CB_RECEIVED_ACTION);
446 Intent intent = new Intent(Intents.SMS_CB_RECEIVED_ACTION);
455 Intent intent = new Intent(Intents.SMS_CB_RECEIVED_ACTION);
463 Intent intent = new Intent(Intents.SMS_CB_RECEIVED_ACTION);
471 Intent intent = new Intent(Intents.SMS_CB_RECEIVED_ACTION);
479 Intent intent = new Intent(Intents.SMS_CB_RECEIVED_ACTION)
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/
ContactsSearchManager.java 23 import android.provider.ContactsContract.Intents.UI;
SpecialCharSequenceMgr.java 33 import android.provider.Telephony.Intents;
94 Intent intent = new Intent(Intents.SECRET_CODE_ACTION,
  /packages/providers/DrmProvider/src/com/android/providers/drm/
DrmPushReceiver.java 25 import static android.provider.Telephony.Sms.Intents.WAP_PUSH_RECEIVED_ACTION;
  /frameworks/base/telephony/java/com/android/internal/telephony/gsm/
GsmSMSDispatcher.java 27 import android.provider.Telephony.Sms.Intents;
94 acknowledgeLastIncomingSms(true, Intents.RESULT_SMS_HANDLED, null);
103 return Intents.RESULT_SMS_GENERIC_ERROR;
112 return Intents.RESULT_SMS_HANDLED;
131 return Intents.RESULT_SMS_HANDLED;
137 return Intents.RESULT_SMS_OUT_OF_MEMORY;
385 case Intents.RESULT_SMS_HANDLED:
388 case Intents.RESULT_SMS_OUT_OF_MEMORY:
390 case Intents.RESULT_SMS_GENERIC_ERROR:
  /packages/apps/Phone/src/com/android/phone/
SpecialCharSequenceMgr.java 24 import android.provider.Telephony.Intents;
138 Intent intent = new Intent(Intents.SECRET_CODE_ACTION,
  /frameworks/base/policy/src/com/android/internal/policy/impl/
KeyguardUpdateMonitor.java 35 import static android.provider.Telephony.Intents.EXTRA_PLMN;
36 import static android.provider.Telephony.Intents.EXTRA_SHOW_PLMN;
37 import static android.provider.Telephony.Intents.EXTRA_SHOW_SPN;
38 import static android.provider.Telephony.Intents.EXTRA_SPN;
39 import static android.provider.Telephony.Intents.SPN_STRINGS_UPDATED_ACTION;
368 * @param intent The intent with action {@link Telephony.Intents#SPN_STRINGS_UPDATED_ACTION}
392 * @param intent The intent with action {@link Telephony.Intents#SPN_STRINGS_UPDATED_ACTION}
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
GlobalSearchSupportTest.java 26 import android.provider.ContactsContract.Intents;
130 Intents.SEARCH_SUGGESTION_DIAL_NUMBER_CLICKED);
142 Intents.SEARCH_SUGGESTION_CREATE_CONTACT_CLICKED);
  /frameworks/base/core/java/android/widget/
QuickContactBadge.java 28 import android.provider.ContactsContract.Intents;
304 final Intent intent = new Intent(Intents.SHOW_OR_CREATE_CONTACT, createUri);

Completed in 825 milliseconds

1 2 3