Searched defs:pendingIntent (Results 1 - 12 of 12) 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/core/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 DActivityView.java197 public void startActivity(PendingIntent pendingIntent) { argument
201 if (DEBUG) Log.v(TAG, "startActivityPendingIntent(): PendingIntent=" + pendingIntent + " "
203 final IIntentSender iIntentSender = pendingIntent.getTarget();
H A DPendingIntent.java182 * @param pendingIntent The PendingIntent this operation was sent through.
188 void onSendFinished(PendingIntent pendingIntent, Intent intent, argument
/frameworks/base/packages/Keyguard/src/com/android/keyguard/
H A DKeyguardHostView.java516 final android.app.PendingIntent pendingIntent,
522 if (pendingIntent.isActivity()) {
532 pendingIntent.getIntentSender(), fillInIntent,
552 return super.onClickHandler(view, pendingIntent, fillInIntent);
515 onClickHandler(final View view, final android.app.PendingIntent pendingIntent, final Intent fillInIntent) argument
/frameworks/base/services/core/java/com/android/server/media/
H A DMediaSessionService.java1094 public void onSendFinished(PendingIntent pendingIntent, Intent intent, int resultCode, argument
/frameworks/base/core/java/android/widget/
H A DRemoteViews.java207 public boolean onClickHandler(View view, PendingIntent pendingIntent, argument
216 pendingIntent.getIntentSender(), fillInIntent,
416 PendingIntent pendingIntent = (PendingIntent) parent.getTag();
421 handler.onClickHandler(v, pendingIntent, fillInIntent);
662 public SetOnClickPendingIntent(int id, PendingIntent pendingIntent) { argument
664 this.pendingIntent = pendingIntent;
672 pendingIntent = PendingIntent.readPendingIntentOrNullFromParcel(parcel);
681 dest.writeInt(pendingIntent != null ? 1 : 0);
682 if (pendingIntent !
729 PendingIntent pendingIntent; field in class:RemoteViews.SetOnClickPendingIntent
2148 setOnClickPendingIntent(int viewId, PendingIntent pendingIntent) argument
[all...]
/frameworks/base/media/java/android/media/
H A DMediaFocusControl.java1090 public void onSendFinished(PendingIntent pendingIntent, Intent intent, argument
/frameworks/base/services/core/java/com/android/server/
H A DAlarmManagerService.java541 InFlight(AlarmManagerService service, PendingIntent pendingIntent, WorkSource workSource, argument
543 mPendingIntent = pendingIntent;
546 mBroadcastStats = service.getStatsLocked(pendingIntent);
H A DLocationManagerService.java880 public void onSendFinished(PendingIntent pendingIntent, Intent intent, argument
H A DConnectivityService.java2211 // pendingIntent => NetworkRequestInfo map.
2213 private NetworkRequestInfo findExistingNetworkRequestInfo(PendingIntent pendingIntent) { argument
2214 Intent intent = pendingIntent.getIntent();
2283 private void handleReleaseNetworkRequestWithIntent(PendingIntent pendingIntent, argument
2285 NetworkRequestInfo nri = findExistingNetworkRequestInfo(pendingIntent);
3126 PendingIntent pendingIntent = PendingIntent.getBroadcast(mContext, 0, intent, 0);
3129 setProvNotificationVisibleIntent(visible, id, networkType, null, pendingIntent);
3940 private void sendIntent(PendingIntent pendingIntent, Intent intent) { argument
3943 if (DBG) log("Sending " + pendingIntent);
3944 pendingIntent
3954 onSendFinished(PendingIntent pendingIntent, Intent intent, int resultCode, String resultData, Bundle resultExtras) argument
[all...]
/frameworks/support/v4/java/android/support/v4/app/
H A DNotificationCompat.java3170 * @param pendingIntent The pending intent which will be triggered on a reply.
3178 PendingIntent pendingIntent, RemoteInput remoteInput) {
3180 mReplyPendingIntent = pendingIntent;
3189 * @param pendingIntent The pending intent to use.
3192 public Builder setReadPendingIntent(PendingIntent pendingIntent) { argument
3193 mReadPendingIntent = pendingIntent;
3177 setReplyAction( PendingIntent pendingIntent, RemoteInput remoteInput) argument

Completed in 299 milliseconds