Home
last modified time | relevance | path

Searched refs:updateIntent (Results 1 – 9 of 9) sorted by relevance

/packages/experimental/NotificationShowcase/src/com/android/example/notificationshowcase/
DUpdateService.java65 Intent updateIntent = new Intent(context, UpdateService.class); in getPendingIntent() local
66 updateIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK); in getPendingIntent()
67 updateIntent.setAction(ACTION_UPDATE); in getPendingIntent()
68 updateIntent.putExtra("id", id); in getPendingIntent()
69 updateIntent.putExtra("when", when); in getPendingIntent()
70 updateIntent.putExtra("update", update); in getPendingIntent()
72 context, 58, updateIntent, PendingIntent.FLAG_UPDATE_CURRENT); in getPendingIntent()
/packages/apps/MusicFX/src/com/android/musicfx/
DCompatibility.java75 Intent updateIntent = new Intent(this, Service.class); in onCreate() local
76 updateIntent.putExtra("defPackage", getPackageName()); in onCreate()
77 updateIntent.putExtra("defName", ActivityMusic.class.getName()); in onCreate()
78 startService(updateIntent); in onCreate()
102 Intent updateIntent = new Intent(context, Service.class); in onReceive() local
103 updateIntent.putExtra("reason", intent); in onReceive()
104 context.startService(updateIntent); in onReceive()
DControlPanelPicker.java108 Intent updateIntent = new Intent(this, Service.class); in onClick() local
111 updateIntent.putExtra("defPackage", c.getString(2)); in onClick()
112 updateIntent.putExtra("defName", c.getString(3)); in onClick()
113 startService(updateIntent); in onClick()
/packages/apps/Calendar/src/com/android/calendar/widget/
DCalendarAppWidgetProvider.java125 Intent updateIntent = new Intent(context, CalendarAppWidgetService.class); in performUpdate() local
126 updateIntent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, appWidgetId); in performUpdate()
128 updateIntent.putExtra(EXTRA_EVENT_IDS, changedEventIds); in performUpdate()
130 updateIntent.setData(Uri.parse(updateIntent.toUri(Intent.URI_INTENT_SCHEME))); in performUpdate()
145 views.setRemoteAdapter(appWidgetId, R.id.events_list, updateIntent); in performUpdate()
DCalendarAppWidgetService.java538 final Intent updateIntent = new Intent(
540 mContext.sendBroadcast(updateIntent);
/packages/apps/Browser/src/com/android/browser/widget/
DBookmarkThumbnailWidgetProvider.java88 Intent updateIntent = new Intent(context, BookmarkThumbnailWidgetService.class); in performUpdate() local
89 updateIntent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, appWidgetId); in performUpdate()
90 updateIntent.setData(Uri.parse(updateIntent.toUri(Intent.URI_INTENT_SCHEME))); in performUpdate()
94 views.setRemoteAdapter(R.id.bookmarks_list, updateIntent); in performUpdate()
/packages/apps/Music/src/com/android/music/
DMediaAppWidgetProvider.java54 Intent updateIntent = new Intent(MediaPlaybackService.SERVICECMD); in onUpdate() local
55 updateIntent.putExtra(MediaPlaybackService.CMDNAME, in onUpdate()
57 updateIntent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_IDS, appWidgetIds); in onUpdate()
58 updateIntent.addFlags(Intent.FLAG_RECEIVER_REGISTERED_ONLY); in onUpdate()
59 context.sendBroadcast(updateIntent); in onUpdate()
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/personalization/
DDictionaryDecayBroadcastReciever.java50 final Intent updateIntent = new Intent(DICTIONARY_DECAY_INTENT_ACTION); in setUpIntervalAlarmForDictionaryDecaying() local
51 updateIntent.setClass(context, DictionaryDecayBroadcastReciever.class); in setUpIntervalAlarmForDictionaryDecaying()
54 updateIntent, PendingIntent.FLAG_CANCEL_CURRENT); in setUpIntervalAlarmForDictionaryDecaying()
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/dictionarypack/
DDictionaryService.java201 final Intent updateIntent = new Intent(DictionaryPackConstants.UPDATE_NOW_INTENT_ACTION); in checkTimeAndMaybeSetupUpdateAlarm() local
203 updateIntent, PendingIntent.FLAG_CANCEL_CURRENT); in checkTimeAndMaybeSetupUpdateAlarm()