Home
last modified time | relevance | path

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

/packages/apps/MusicFX/src/com/android/musicfx/
DCompatibility.java82 Intent updateIntent = new Intent(this, Service.class); in onCreate() local
83 updateIntent.putExtra("defPackage", defPackage); in onCreate()
84 updateIntent.putExtra("defName", defName); in onCreate()
85 startService(updateIntent); in onCreate()
109 Intent updateIntent = new Intent(context, Service.class); in onReceive() local
110 updateIntent.putExtra("reason", intent); in onReceive()
111 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.java536 final Intent updateIntent = new Intent(
538 mContext.sendBroadcast(updateIntent);
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
DSystemBroadcastReceiver.java140 final Intent updateIntent = new Intent( in downloadLatestDictionaries() local
142 context.sendBroadcast(updateIntent); in downloadLatestDictionaries()
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/dictionarypack/
DDictionaryService.java231 final Intent updateIntent = new Intent(DictionaryPackConstants.UPDATE_NOW_INTENT_ACTION); in checkTimeAndMaybeSetupUpdateAlarm() local
233 updateIntent, PendingIntent.FLAG_CANCEL_CURRENT); in checkTimeAndMaybeSetupUpdateAlarm()