HomeSort by relevance Sort by last modified time
    Searched defs:PendingIntent (Results 1 - 21 of 21) sorted by null

  /packages/apps/Mms/src/com/android/mms/transaction/
SmsSingleRecipientSender.java 5 import android.app.PendingIntent;
77 ArrayList<PendingIntent> deliveryIntents = new ArrayList<PendingIntent>(messageCount);
78 ArrayList<PendingIntent> sentIntents = new ArrayList<PendingIntent>(messageCount);
84 deliveryIntents.add(PendingIntent.getBroadcast(
111 sentIntents.add(PendingIntent.getBroadcast(mContext, requestCode, intent, 0));
  /frameworks/base/core/java/android/app/
PendingIntent.java 39 * <p>By giving a PendingIntent to another application,
42 * identity). As such, you should be careful about how you build the PendingIntent:
47 * <p>A PendingIntent itself is simply a reference to a token maintained by
50 * PendingIntent itself will remain usable from other processes that
52 * same kind of PendingIntent (same operation, same Intent action, data,
53 * categories, and components, and same flags), it will receive a PendingIntent
57 public final class PendingIntent implements Parcelable {
63 * PendingIntent can only be used once. If set, after
70 * {@link #getService}: if the described PendingIntent does not already
76 * {@link #getService}: if the described PendingIntent already exists
    [all...]
ActivityManagerNative.java 99 static public void noteWakeupAlarm(PendingIntent ps) {
615 PendingIntent pi = getRunningServiceControlPanel(comp);
617 PendingIntent.writePendingIntentOrNullToParcel(pi, reply);
    [all...]
  /packages/apps/Calendar/src/com/android/calendar/alerts/
AlertReceiver.java 24 import android.app.PendingIntent;
154 PendingIntent pendingClickIntent = PendingIntent.getActivity(
157 bob.setDeleteIntent(PendingIntent.getBroadcast(context, 0, deleteIntent, 0));
  /packages/providers/DownloadProvider/src/com/android/providers/downloads/
DownloadNotification.java 20 import android.app.PendingIntent;
193 builder.setContentIntent(PendingIntent.getBroadcast(mContext, 0, intent, 0));
242 builder.setContentIntent(PendingIntent.getBroadcast(mContext, 0, intent, 0));
248 builder.setDeleteIntent(PendingIntent.getBroadcast(mContext, 0, intent, 0));
  /cts/tests/tests/app/src/android/app/cts/
PendingIntentTest.java 19 import android.app.PendingIntent;
20 import android.app.PendingIntent.CanceledException;
34 @TestTargetClass(PendingIntent.class)
38 private PendingIntent mPendingIntent;
44 private PendingIntent.OnFinished mFinish;
53 mFinish = new PendingIntent.OnFinished() {
54 public void onSendFinished(PendingIntent pi, Intent intent, int resultCode,
114 mPendingIntent = PendingIntent.getActivity(mContext, 1, mIntent,
115 PendingIntent.FLAG_CANCEL_CURRENT);
126 mPendingIntent = PendingIntent.getActivity(mContext, 1, mIntent
    [all...]
  /cts/tests/tests/telephony/src/android/telephony/cts/
SmsManagerTest.java 24 import android.app.PendingIntent;
123 private PendingIntent mSentIntent;
124 private PendingIntent mDeliveredIntent;
181 PendingIntent.class, PendingIntent.class}
186 args = {String.class, String.class, String.class, PendingIntent.class,
187 PendingIntent.class}
256 ArrayList<PendingIntent> sentIntents = new ArrayList<PendingIntent>();
257 ArrayList<PendingIntent> deliveryIntents = new ArrayList<PendingIntent>()
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/opp/
BluetoothOppNotification.java 40 import android.app.PendingIntent;
297 b.setContentIntent(PendingIntent.getBroadcast(mContext, 0, intent, 0));
368 outNoti.setLatestEventInfo(mContext, title, caption, PendingIntent.getBroadcast(
372 outNoti.deleteIntent = PendingIntent.getBroadcast(mContext, 0, intent, 0);
415 inNoti.setLatestEventInfo(mContext, title, caption, PendingIntent.getBroadcast(
419 inNoti.deleteIntent = PendingIntent.getBroadcast(mContext, 0, intent, 0);
459 n.setLatestEventInfo(mContext, title, caption, PendingIntent.getBroadcast(mContext, 0,
465 n.deleteIntent = PendingIntent.getBroadcast(mContext, 0, intent, 0);
  /packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/common/
Utils.java 19 import android.app.PendingIntent;
383 public static PendingIntent deserializePendingIntent(byte[] rawPendingIntent) {
389 return PendingIntent.readPendingIntentOrNullFromParcel(parcel);
394 throw new IllegalArgumentException("error parsing PendingIntent");
400 public static byte[] serializePendingIntent(PendingIntent pendingIntent) {
404 PendingIntent.writePendingIntentOrNullToParcel(pendingIntent, parcel);
  /frameworks/base/services/java/com/android/server/net/
NetworkPolicyManagerService.java 68 import android.app.PendingIntent;
549 builder.setContentIntent(PendingIntent.getActivity(
550 mContext, 0, intent, PendingIntent.FLAG_UPDATE_CURRENT));
581 builder.setContentIntent(PendingIntent.getActivity(
582 mContext, 0, intent, PendingIntent.FLAG_UPDATE_CURRENT));
615 builder.setContentIntent(PendingIntent.getActivity(
616 mContext, 0, intent, PendingIntent.FLAG_UPDATE_CURRENT));
653 PendingIntent.getBroadcast(mContext, 0, intent, PendingIntent.FLAG_UPDATE_CURRENT));
    [all...]
  /prebuilt/sdk/10/
android.jar 
  /prebuilt/sdk/11/
android.jar 
  /prebuilt/sdk/12/
android.jar 
  /prebuilt/sdk/13/
android.jar 
  /prebuilt/sdk/14/
android.jar 
  /prebuilt/sdk/4/
android.jar 
  /prebuilt/sdk/5/
android.jar 
  /prebuilt/sdk/6/
android.jar 
  /prebuilt/sdk/7/
android.jar 
  /prebuilt/sdk/8/
android.jar 
  /prebuilt/sdk/9/
android.jar 

Completed in 178 milliseconds