Lines Matching refs:alarms
41 * The Alarms provider supplies info about Alarm Clock settings
43 public class Alarms {
151 * Queries all alarms
152 * @return cursor over all alarms
160 // Private method to get a more limited set of alarms from the database.
171 // used later to disable expire alarms.
202 // Get the list of snoozed alarms
234 * A convenience method to set an alarm in the Alarms
320 Set<Alarm> alarms = new HashSet<Alarm>();
322 // We need to to build the list of alarms from both the snoozed list and the scheduled
326 // first go through the snoozed alarms
331 alarms.add(a);
334 // Now add the scheduled alarms
341 alarms.add(a);
351 for (Alarm a : alarms) {
377 * Disables non-repeating alarms that have passed. Called at
405 * otherwise loads all alarms, activates next alert.