Searched defs:pendingIntent (Results 1 - 7 of 7) sorted by relevance

/frameworks/base/core/java/android/text/style/
H A DEasyEditSpan.java70 * @param pendingIntent The intent will be sent when the wrapped text is deleted or modified.
74 public EasyEditSpan(PendingIntent pendingIntent) { argument
75 mPendingIntent = pendingIntent;
/frameworks/base/services/java/com/android/server/location/
H A DGeofenceManager.java347 private void sendIntentEnter(PendingIntent pendingIntent) { argument
349 Slog.d(TAG, "sendIntentEnter: pendingIntent=" + pendingIntent);
354 sendIntent(pendingIntent, intent);
357 private void sendIntentExit(PendingIntent pendingIntent) { argument
359 Slog.d(TAG, "sendIntentExit: pendingIntent=" + pendingIntent);
364 sendIntent(pendingIntent, intent);
367 private void sendIntent(PendingIntent pendingIntent, Intent intent) { argument
370 pendingIntent
408 onSendFinished(PendingIntent pendingIntent, Intent intent, int resultCode, String resultData, Bundle resultExtras) argument
[all...]
/frameworks/base/core/java/android/app/
H A DPendingIntent.java154 * @param pendingIntent The PendingIntent this operation was sent through.
160 void onSendFinished(PendingIntent pendingIntent, Intent intent, argument
/frameworks/base/services/java/com/android/server/
H A DAlarmManagerService.java115 InFlight(AlarmManagerService service, PendingIntent pendingIntent) { argument
116 mPendingIntent = pendingIntent;
117 Intent intent = pendingIntent.getIntent();
121 mBroadcastStats = service.getStatsLocked(pendingIntent);
H A DLocationManagerService.java653 public void onSendFinished(PendingIntent pendingIntent, Intent intent, argument
/frameworks/base/core/java/android/widget/
H A DRemoteViews.java163 public boolean onClickHandler(View view, PendingIntent pendingIntent, argument
172 pendingIntent.getIntentSender(), fillInIntent,
373 PendingIntent pendingIntent = (PendingIntent) parent.getTag();
387 handler.onClickHandler(v, pendingIntent, fillInIntent);
637 public SetOnClickPendingIntent(int id, PendingIntent pendingIntent) { argument
639 this.pendingIntent = pendingIntent;
647 pendingIntent = PendingIntent.readPendingIntentOrNullFromParcel(parcel);
656 dest.writeInt(pendingIntent != null ? 1 : 0);
657 if (pendingIntent !
715 PendingIntent pendingIntent; field in class:RemoteViews.SetOnClickPendingIntent
1979 setOnClickPendingIntent(int viewId, PendingIntent pendingIntent) argument
[all...]
/frameworks/base/media/java/android/media/
H A DAudioService.java4751 public void onSendFinished(PendingIntent pendingIntent, Intent intent, argument

Completed in 591 milliseconds