Searched defs:timer (Results 1 - 5 of 5) sorted by relevance

/frameworks/base/services/java/com/android/server/
H A DSystemServer.java548 static Timer timer; field in class:SystemServer
561 timer = new Timer();
562 timer.schedule(new TimerTask() {
/frameworks/base/media/libdrm/mobile2/src/rights/
H A DConstraint.cpp138 void Constraint::setTimer(int timer) argument
140 mTimer = timer;
/frameworks/base/libs/utils/
H A DAssetManager.cpp1406 DurationTimer timer; local
1407 timer.start();
1413 timer.stop();
1415 timer.durationUsecs() / 1000.0);
/frameworks/base/core/java/android/os/
H A DBatteryStats.java38 * A constant indicating a partial wake lock timer.
43 * A constant indicating a full wake lock timer.
48 * A constant indicating a window wake lock timer.
53 * A constant indicating a sensor timer.
60 * A constant indicating a a wifi turn on timer
67 * A constant indicating a full wifi lock timer
74 * A constant indicating a scan wifi lock timer
81 * A constant indicating a wifi multicast timer
88 * A constant indicating an audio turn on timer
95 * A constant indicating a video turn on timer
693 printWakeLock(StringBuilder sb, Timer timer, long batteryRealtime, String name, int which, String linePrefix) argument
727 printWakeLockCheckin(StringBuilder sb, Timer timer, long now, String name, int which, String linePrefix) argument
[all...]
/frameworks/base/core/java/com/android/internal/os/
H A DBatteryStatsImpl.java83 // A set of pools of currently active timers. When a timer is queried, we will divide the
84 // elapsed time by the number of active timers to arrive at that timer's share of the time.
85 // In order to do this, we must refresh each timer whenever the number of active timers
457 * @param timer a Timer, or null.
459 public static void writeTimerToParcel(Parcel out, Timer timer, argument
461 if (timer == null) {
467 timer.writeToParcel(out, batteryRealtime);
691 * The last time at which we updated the timer. If mNesting is > 0,
698 * The total time at which the timer was acquired, to determine if
754 // Add this timer t
[all...]

Completed in 819 milliseconds