Home
last modified time | relevance | path

Searched refs:timerIntent (Results 1 – 2 of 2) sorted by relevance

/packages/apps/DeskClock/src/com/android/deskclock/
DUtils.java225 Intent timerIntent = new Intent(); in showInUseNotifications() local
226 timerIntent.setAction(Timers.NOTIF_IN_USE_SHOW); in showInUseNotifications()
227 context.sendBroadcast(timerIntent); in showInUseNotifications()
234 Intent timerIntent = new Intent(); in showTimesUpNotifications() local
235 timerIntent.setAction(Timers.NOTIF_TIMES_UP_SHOW); in showTimesUpNotifications()
236 context.sendBroadcast(timerIntent); in showTimesUpNotifications()
243 Intent timerIntent = new Intent(); in cancelTimesUpNotifications() local
244 timerIntent.setAction(Timers.NOTIF_TIMES_UP_CANCEL); in cancelTimesUpNotifications()
245 context.sendBroadcast(timerIntent); in cancelTimesUpNotifications()
DDeskClock.java283 Intent timerIntent = new Intent(); in onResume() local
284 timerIntent.setAction(Timers.NOTIF_IN_USE_CANCEL); in onResume()
285 sendBroadcast(timerIntent); in onResume()