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

1 2 3 4 5 6 7 8 9

  /frameworks/base/core/java/android/app/
PendingIntent.aidl 20 parcelable PendingIntent;
IAlarmManager.aidl 19 import android.app.PendingIntent;
27 void set(int type, long triggerAtTime, in PendingIntent operation);
28 void setRepeating(int type, long triggerAtTime, long interval, in PendingIntent operation);
29 void setInexactRepeating(int type, long triggerAtTime, long interval, in PendingIntent operation);
32 void remove(in PendingIntent operation);
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...]
AlarmManager.java 123 * typically comes from {@link PendingIntent#getBroadcast
137 public void set(int type, long triggerAtTime, PendingIntent operation) {
176 * typically comes from {@link PendingIntent#getBroadcast
191 PendingIntent operation) {
200 * {@link #setInexactRepeating(int, long, long, PendingIntent)}
237 * typically comes from {@link PendingIntent#getBroadcast
257 PendingIntent operation) {
274 public void cancel(PendingIntent operation) {
  /packages/apps/Phone/src/com/android/phone/
SipUtil.java 19 import android.app.PendingIntent;
28 public static PendingIntent createIncomingCallPendingIntent() {
32 return PendingIntent.getBroadcast(phoneContext, 0, intent,
33 PendingIntent.FLAG_UPDATE_CURRENT);
  /cts/tests/tests/permission2/src/android/permission2/cts/
NoReceiveGsmSmsPermissionTest.java 19 import android.app.PendingIntent;
29 protected void sendSms(PendingIntent sentIntent, PendingIntent deliveryIntent,
NoReceiveSmsPermissionTest.java 20 import android.app.PendingIntent;
87 PendingIntent sentIntent = PendingIntent.getBroadcast(getContext(), 0,
88 new Intent(MESSAGE_SENT_ACTION), PendingIntent.FLAG_ONE_SHOT);
89 PendingIntent deliveryIntent = PendingIntent.getBroadcast(getContext(), 0,
90 new Intent(MESSAGE_STATUS_RECEIVED_ACTION), PendingIntent.FLAG_ONE_SHOT);
100 protected void sendSms(String currentNumber, String text, PendingIntent sentIntent,
101 PendingIntent deliveryIntent) {
  /frameworks/support/v4/honeycomb/android/support/v4/app/
TaskStackBuilderHoneycomb.java 19 import android.app.PendingIntent;
27 public static PendingIntent getActivitiesPendingIntent(Context context, int requestCode,
29 return PendingIntent.getActivities(context, requestCode, intents, flags);
  /frameworks/base/core/tests/coretests/src/android/app/activity/
IntentSenderTest.java 20 import android.app.PendingIntent;
33 PendingIntent is = PendingIntent.getBroadcast(getContext(), 0,
47 PendingIntent.OnFinished finish = new PendingIntent.OnFinished() {
48 public void onSendFinished(PendingIntent pi, Intent intent,
54 PendingIntent is = PendingIntent.getBroadcast(getContext(), 0, intent, 0);
62 PendingIntent is = PendingIntent.getBroadcast(getContext(), 0
    [all...]
  /frameworks/base/telephony/java/com/android/internal/telephony/
ISms.aidl 19 import android.app.PendingIntent;
75 * @param sentIntent if not NULL this <code>PendingIntent</code> is
88 * @param deliveryIntent if not NULL this <code>PendingIntent</code> is
93 in byte[] data, in PendingIntent sentIntent, in PendingIntent deliveryIntent);
101 * @param sentIntent if not NULL this <code>PendingIntent</code> is
114 * @param deliveryIntent if not NULL this <code>PendingIntent</code> is
119 in PendingIntent sentIntent, in PendingIntent deliveryIntent);
130 * <code>PendingIntent</code>s (one for each message part) that i
    [all...]
IccSmsInterfaceManagerProxy.java 19 import android.app.PendingIntent;
54 byte[] data, PendingIntent sentIntent, PendingIntent deliveryIntent) {
60 String text, PendingIntent sentIntent, PendingIntent deliveryIntent) {
65 List<String> parts, List<PendingIntent> sentIntents,
66 List<PendingIntent> deliveryIntents) throws android.os.RemoteException {
IccSmsInterfaceManager.java 19 import android.app.PendingIntent;
59 * @param sentIntent if not NULL this <code>PendingIntent</code> is
72 * @param deliveryIntent if not NULL this <code>PendingIntent</code> is
77 byte[] data, PendingIntent sentIntent, PendingIntent deliveryIntent) {
96 * @param sentIntent if not NULL this <code>PendingIntent</code> is
109 * @param deliveryIntent if not NULL this <code>PendingIntent</code> is
114 String text, PendingIntent sentIntent, PendingIntent deliveryIntent) {
135 * <code>PendingIntent</code>s (one for each message part) that i
    [all...]
  /cts/tests/tests/app/src/android/app/cts/
PendingIntent_CanceledExceptionTest.java 19 import android.app.PendingIntent;
20 import android.app.PendingIntent.CanceledException;
27 @TestTargetClass(PendingIntent.CanceledException.class)
33 method = "PendingIntent.CanceledException",
38 method = "PendingIntent.CanceledException",
43 method = "PendingIntent.CanceledException",
48 PendingIntent.CanceledException canceledException = new PendingIntent.CanceledException();
56 canceledException = new PendingIntent.CanceledException(message);
64 canceledException = new PendingIntent.CanceledException(ex)
    [all...]
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/gsm/cts/
SmsManagerTest.java 21 import android.app.PendingIntent;
52 ArrayList<PendingIntent> sentIntents, ArrayList<PendingIntent> deliveryIntents) {
57 protected void sendDataMessage(String destAddr,short port, byte[] data, PendingIntent sentIntent, PendingIntent deliveredIntent) {
62 protected void sendTextMessage(String destAddr, String text, PendingIntent sentIntent, PendingIntent deliveredIntent) {
  /frameworks/base/telephony/java/android/telephony/gsm/
SmsManager.java 19 import android.app.PendingIntent;
58 * @param sentIntent if not NULL this <code>PendingIntent</code> is
68 * @param deliveryIntent if not NULL this <code>PendingIntent</code> is
78 PendingIntent sentIntent, PendingIntent deliveryIntent) {
108 * <code>PendingIntent</code>s (one for each message part) that is
119 * <code>PendingIntent</code>s (one for each message part) that is
130 ArrayList<PendingIntent> sentIntents, ArrayList<PendingIntent> deliveryIntents) {
143 * @param sentIntent if not NULL this <code>PendingIntent</code> i
    [all...]
  /cts/tests/tests/telephony/src/android/telephony/cts/
SmsManagerTest.java 24 import android.app.PendingIntent;
124 private PendingIntent mSentIntent;
125 private PendingIntent mDeliveredIntent;
187 PendingIntent.class, PendingIntent.class}
192 args = {String.class, String.class, String.class, PendingIntent.class,
193 PendingIntent.class}
262 ArrayList<PendingIntent> sentIntents = new ArrayList<PendingIntent>();
263 ArrayList<PendingIntent> deliveryIntents = new ArrayList<PendingIntent>()
    [all...]
  /frameworks/base/core/java/android/nfc/
INfcAdapter.aidl 19 import android.app.PendingIntent;
44 void setForegroundDispatch(in PendingIntent intent,
  /frameworks/base/media/java/android/media/
IRemoteControlDisplay.aidl 19 import android.app.PendingIntent;
35 * @param clientMediaIntent the PendingIntent associated with the client.
40 void setCurrentClientId(int clientGeneration, in PendingIntent clientMediaIntent,
IAudioService.aidl 19 import android.app.PendingIntent;
89 oneway void registerMediaButtonIntent(in PendingIntent pi, in ComponentName c);
90 oneway void unregisterMediaButtonIntent(in PendingIntent pi, in ComponentName c);
92 oneway void registerRemoteControlClient(in PendingIntent mediaIntent,
94 oneway void unregisterRemoteControlClient(in PendingIntent mediaIntent,
  /frameworks/base/voip/java/android/net/sip/
ISipService.aidl 19 import android.app.PendingIntent;
30 in PendingIntent incomingCallPendingIntent,
  /development/samples/ApiDemos/src/com/example/android/apis/app/
IntentActivityFlags.java 6 import android.app.PendingIntent;
7 import android.app.PendingIntent.CanceledException;
76 PendingIntent pi = PendingIntent.getActivities(context, 0,
77 buildIntentsToViewsLists(), PendingIntent.FLAG_UPDATE_CURRENT);
82 Log.w("IntentActivityFlags", "Failed sending PendingIntent", e);
  /frameworks/base/core/java/android/hardware/usb/
IUsbManager.aidl 19 import android.app.PendingIntent;
64 void requestDevicePermission(in UsbDevice device, String packageName, in PendingIntent pi);
71 in PendingIntent pi);
  /frameworks/base/core/java/com/android/internal/net/
VpnConfig.java 19 import android.app.PendingIntent;
45 public static PendingIntent getIntentForStatusPanel(Context context, VpnConfig config) {
51 return PendingIntent.getActivity(context, 0, intent, (config == null) ?
52 PendingIntent.FLAG_NO_CREATE : PendingIntent.FLAG_CANCEL_CURRENT);
63 public PendingIntent configureIntent;
  /packages/apps/Browser/src/com/android/browser/widget/
BookmarkThumbnailWidgetProvider.java 19 import android.app.PendingIntent;
83 PendingIntent launchBrowser = PendingIntent.getActivity(context, 0,
86 PendingIntent.FLAG_UPDATE_CURRENT);
98 PendingIntent.getBroadcast(context, 0, ic,
99 PendingIntent.FLAG_UPDATE_CURRENT));

Completed in 425 milliseconds

1 2 3 4 5 6 7 8 9