Lines Matching defs:Alarms
39 * The Alarms provider supplies info about Alarm Clock settings
41 public class Alarms {
131 * Queries all alarms
132 * @return cursor over all alarms
140 // Private method to get a more limited set of alarms from the database.
151 // used later to disable expire alarms.
177 // Get the list of snoozed alarms
209 * A convenience method to set an alarm in the Alarms
291 Set<Alarm> alarms = new HashSet<Alarm>();
293 // We need to to build the list of alarms from both the snoozed list and the scheduled
297 // first go through the snoozed alarms
302 alarms.add(a);
305 // Now add the scheduled alarms
312 alarms.add(a);
322 for (Alarm a : alarms) {
348 * Disables non-repeating alarms that have passed. Called at
376 * otherwise loads all alarms, activates next alert.