Searched refs:updateIntent (Results 1 – 9 of 9) sorted by relevance
/packages/experimental/NotificationShowcase/src/com/android/example/notificationshowcase/ |
D | UpdateService.java | 65 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/ |
D | Compatibility.java | 75 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()
|
D | ControlPanelPicker.java | 108 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/ |
D | CalendarAppWidgetProvider.java | 125 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()
|
D | CalendarAppWidgetService.java | 538 final Intent updateIntent = new Intent( 540 mContext.sendBroadcast(updateIntent);
|
/packages/apps/Browser/src/com/android/browser/widget/ |
D | BookmarkThumbnailWidgetProvider.java | 88 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/ |
D | MediaAppWidgetProvider.java | 54 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/ |
D | SystemBroadcastReceiver.java | 140 final Intent updateIntent = new Intent( in downloadLatestDictionaries() local 142 context.sendBroadcast(updateIntent); in downloadLatestDictionaries()
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/dictionarypack/ |
D | DictionaryService.java | 231 final Intent updateIntent = new Intent(DictionaryPackConstants.UPDATE_NOW_INTENT_ACTION); in checkTimeAndMaybeSetupUpdateAlarm() local 233 updateIntent, PendingIntent.FLAG_CANCEL_CURRENT); in checkTimeAndMaybeSetupUpdateAlarm()
|