Home
last modified time | relevance | path

Searched refs:timers (Results 1 – 7 of 7) sorted by relevance

/frameworks/base/docs/html/training/wearables/ui/
Dconfirm.jd9 <li><a href="#confirmation-timers">Use Automatic Confirmation Timers</a></li>
25 <p>The Wearable UI Library helps you show confirmation animations and timers in your
29 <dt><em>Confirmation timers</em></dt>
30 <dd>Automatic confirmation timers show users an animated timer that lets them cancel an action
39 <h2 id="confirmation-timers">Use Automatic Confirmation Timers</h2>
47 <p>Automatic confirmation timers let users cancel an action they just performed. When the user
/frameworks/base/core/java/android/os/
DBatteryStats.java3569 final ArrayList<TimerEntry> timers = new ArrayList<>(); in dumpLocked() local
3594 timers.add(new TimerEntry(wakelocks.keyAt(iw), u.getUid(), in dumpLocked()
4051 if (timers.size() > 0) { in dumpLocked()
4052 Collections.sort(timers, timerComparator); in dumpLocked()
4054 for (int i=0; i<timers.size(); i++) { in dumpLocked()
4055 TimerEntry timer = timers.get(i); in dumpLocked()
4065 timers.clear(); in dumpLocked()
/frameworks/base/docs/html/work/
Dmanaged-profiles.jd94 <p>For example, if your app needs to set timers, it would need to check that
/frameworks/base/docs/html/training/scheduling/
Dalarms.jd64 without relying on timers or continuously running background services.</li>
/frameworks/base/docs/html/training/monitoring-device-state/
Ddoze-standby.jd194 timers manage, because alarms in Android 5.1 (API level 22) or lower do not fire when the system
/frameworks/base/core/java/com/android/internal/os/
DBatteryStatsImpl.java7386 ArrayList<StopwatchTimer> timers = mBsi.mSensorTimers.get(sensor); in getSensorTimerLocked() local
7387 if (timers == null) { in getSensorTimerLocked()
7388 timers = new ArrayList<StopwatchTimer>(); in getSensorTimerLocked()
7389 mBsi.mSensorTimers.put(sensor, timers); in getSensorTimerLocked()
7391 t = new StopwatchTimer(mBsi.mClocks, this, BatteryStats.SENSOR, timers, in getSensorTimerLocked()
/frameworks/base/docs/html/distribute/essentials/quality/
Dcore.jd1134 Pay close attention to alarms, timers, notifications, syncs, and so on.