/packages/apps/Music/src/com/android/music/ |
D | MediaAppWidgetProvider.java | 175 PendingIntent pendingIntent; in linkButtons() local 181 pendingIntent = PendingIntent.getActivity(context, in linkButtons() 183 views.setOnClickPendingIntent(R.id.album_appwidget, pendingIntent); in linkButtons() 186 pendingIntent = PendingIntent.getActivity(context, in linkButtons() 188 views.setOnClickPendingIntent(R.id.album_appwidget, pendingIntent); in linkButtons() 193 pendingIntent = PendingIntent.getService(context, in linkButtons() 195 views.setOnClickPendingIntent(R.id.control_play, pendingIntent); in linkButtons() 199 pendingIntent = PendingIntent.getService(context, in linkButtons() 201 views.setOnClickPendingIntent(R.id.control_next, pendingIntent); in linkButtons()
|
/packages/apps/UnifiedEmail/src/com/android/mail/utils/ |
D | NotificationActionUtils.java | 208 final PendingIntent pendingIntent = getNotificationActionPendingIntent( in addNotificationActions() local 217 notification.addAction(actionIconResId, title, pendingIntent); in addNotificationActions() 691 final PendingIntent pendingIntent = in registerUndoTimeout() local 694 alarmManager.set(AlarmManager.ELAPSED_REALTIME, triggerAtMills, pendingIntent); in registerUndoTimeout() 710 final PendingIntent pendingIntent = in cancelUndoTimeout() local 713 alarmManager.cancel(pendingIntent); in cancelUndoTimeout() 729 final PendingIntent pendingIntent = in createUndoTimeoutPendingIntent() local 732 return pendingIntent; in createUndoTimeoutPendingIntent()
|
/packages/apps/DeskClock/src/com/android/deskclock/alarms/ |
D | AlarmStateManager.java | 959 PendingIntent pendingIntent = PendingIntent.getBroadcast(context, instance.hashCode(), in scheduleInstanceStateChange() local 964 am.setExact(AlarmManager.RTC_WAKEUP, timeInMillis, pendingIntent); in scheduleInstanceStateChange() 966 am.set(AlarmManager.RTC_WAKEUP, timeInMillis, pendingIntent); in scheduleInstanceStateChange() 975 PendingIntent pendingIntent = PendingIntent.getBroadcast(context, instance.hashCode(), in cancelScheduledInstanceStateChange() local 979 if (pendingIntent != null) { in cancelScheduledInstanceStateChange() 981 am.cancel(pendingIntent); in cancelScheduledInstanceStateChange() 982 pendingIntent.cancel(); in cancelScheduledInstanceStateChange()
|
/packages/apps/Settings/src/com/android/settings/ |
D | TetherService.java | 233 PendingIntent pendingIntent = PendingIntent.getService(this, 0, intent, 0); in scheduleAlarm() local 241 pendingIntent); in scheduleAlarm() 261 PendingIntent pendingIntent = PendingIntent.getService(this, 0, intent, 0); in cancelAlarmIfNecessary() local 263 alarmManager.cancel(pendingIntent); in cancelAlarmIfNecessary()
|
/packages/services/Mms/src/com/android/mms/service/ |
D | MmsRequest.java | 217 final PendingIntent pendingIntent = getPendingIntent(); in processResult() local 218 if (pendingIntent != null) { in processResult() 235 pendingIntent.send(context, result, fillIn); in processResult()
|
/packages/apps/Messaging/src/com/android/messaging/datamodel/action/ |
D | ActionServiceImpl.java | 162 final PendingIntent pendingIntent = PendingIntent.getBroadcast( in scheduleAlarm() local 170 SystemClock.elapsedRealtime() + delayMs, pendingIntent); in scheduleAlarm() 172 mgr.cancel(pendingIntent); in scheduleAlarm()
|
/packages/apps/Messaging/src/com/android/messaging/sms/ |
D | SmsStorageStatusManager.java | 65 final PendingIntent pendingIntent = UIIntents.get() in postStorageLowNotification() local 75 .setContentIntent(pendingIntent); in postStorageLowNotification()
|
/packages/apps/BasicSmsReceiver/src/com/android/basicsmsreceiver/ |
D | SmsMessageReceiver.java | 89 PendingIntent pendingIntent = PendingIntent.getActivity(context, 0, di, 0); in createDisplayMessageIntent() local 90 return pendingIntent; in createDisplayMessageIntent()
|
/packages/apps/DeskClock/src/com/android/deskclock/timer/ |
D | TimerReceiver.java | 344 int priority, PendingIntent pendingIntent, int notificationId, boolean showTicker) { in showCollapsedNotification() argument 349 .setDeleteIntent(pendingIntent) in showCollapsedNotification() 362 notification.contentIntent = pendingIntent; in showCollapsedNotification()
|
/packages/apps/DeskClock/src/com/android/deskclock/stopwatch/ |
D | StopwatchService.java | 174 PendingIntent pendingIntent = PendingIntent.getActivity(context, 0, intent, in setNotification() local 180 remoteViewsCollapsed.setOnClickPendingIntent(R.id.swn_collapsed_hitspace, pendingIntent); in setNotification() 187 remoteViewsExpanded.setOnClickPendingIntent(R.id.swn_expanded_hitspace, pendingIntent); in setNotification()
|
/packages/apps/ContactsCommon/src/com/android/contacts/common/location/ |
D | CountryDetector.java | 108 final PendingIntent pendingIntent = PendingIntent.getBroadcast(context, 0, activeIntent, in registerForLocationUpdates() local 112 TIME_BETWEEN_UPDATES_MS, DISTANCE_BETWEEN_UPDATES_METERS, pendingIntent); in registerForLocationUpdates()
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/dictionarypack/ |
D | DictionaryService.java | 232 final PendingIntent pendingIntent = PendingIntent.getBroadcast(context, 0, in checkTimeAndMaybeSetupUpdateAlarm() local 238 if (null != alarmManager) alarmManager.set(AlarmManager.RTC, alarmTime, pendingIntent); in checkTimeAndMaybeSetupUpdateAlarm()
|
/packages/apps/Gallery2/src/com/android/gallery3d/gadget/ |
D | PhotoAppWidgetProvider.java | 97 PendingIntent pendingIntent = PendingIntent.getActivity( in buildStackWidget() local 99 views.setPendingIntentTemplate(R.id.appwidget_stack_view, pendingIntent); in buildStackWidget()
|
/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/ |
D | SearchWidgetProvider.java | 181 PendingIntent pendingIntent = PendingIntent.getActivity(context, 0, intent, 0); in setOnClickActivityIntent() local 182 views.setOnClickPendingIntent(viewId, pendingIntent); in setOnClickActivityIntent()
|
/packages/apps/Messaging/src/android/support/v7/mms/ |
D | MmsRequest.java | 104 final PendingIntent pendingIntent) { in MmsRequest() argument 107 mPendingIntent = pendingIntent; in MmsRequest()
|
/packages/services/Telephony/src/com/android/phone/vvm/omtp/sync/ |
D | OmtpVvmSyncService.java | 319 PendingIntent pendingIntent = PendingIntent.getService(this, 0, serviceIntent, 0); in setRetryAlarm() local 329 pendingIntent); in setRetryAlarm()
|
/packages/apps/Messaging/src/com/android/messaging/receiver/ |
D | SmsReceiver.java | 264 final PendingIntent pendingIntent = UIIntents.get() in postNewMessageSecondaryUserNotification() local 274 .setContentIntent(pendingIntent); in postNewMessageSecondaryUserNotification()
|
/packages/apps/FMRadio/src/com/android/fmradio/ |
D | FmRecordActivity.java | 170 PendingIntent pendingIntent = PendingIntent.getActivity(mContext, 0, intent, in updateRecordingNotification() local 182 pendingIntent); in updateRecordingNotification()
|
/packages/services/Telephony/src/com/android/phone/ |
D | NotificationMgr.java | 391 PendingIntent pendingIntent = in updateMwi() local 408 .setContentIntent(pendingIntent) in updateMwi()
|
/packages/providers/TvProvider/src/com/android/providers/tv/ |
D | TvProvider.java | 455 PendingIntent pendingIntent = PendingIntent.getService( in scheduleEpgDataCleanup() local 460 AlarmManager.INTERVAL_HALF_DAY, pendingIntent); in scheduleEpgDataCleanup()
|
/packages/apps/Stk/src/com/android/stk/ |
D | StkAppService.java | 1540 PendingIntent pendingIntent = PendingIntent.getService(mContext, 0, in launchIdleText() local 1553 notificationBuilder.setContentIntent(pendingIntent); in launchIdleText()
|