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

/frameworks/base/services/java/com/android/server/
H A DSystemServer.java895 static Timer timer; field in class:SystemServer
922 timer = new Timer();
923 timer.schedule(new TimerTask() {
/frameworks/rs/
H A DrsScriptC_Lib.cpp82 time_t rsrTime(Context *rsc, Script *sc, time_t *timer) { argument
83 return time(timer);
86 tm* rsrLocalTime(Context *rsc, Script *sc, tm *local, time_t *timer) { argument
94 tm *tmp = localtime(timer);
/frameworks/base/voip/java/com/android/server/sip/
H A DSipService.java476 void setWakeupTimer(SipWakeupTimer timer) { argument
477 mSipGroup.setWakeupTimer(timer);
H A DSipSessionGroup.java139 SipWakeupTimer timer, SipWakeLock wakeLock) throws SipException {
142 mWakeupTimer = timer;
149 void setWakeupTimer(SipWakeupTimer timer) { argument
150 mWakeupTimer = timer;
548 // lightweight timer
576 Log.e(TAG, "session timer interrupted!");
138 SipSessionGroup(SipProfile profile, String password, SipWakeupTimer timer, SipWakeLock wakeLock) argument
/frameworks/base/libs/androidfw/
H A DAssetManager.cpp1647 DurationTimer timer; local
1648 timer.start();
1654 timer.stop();
1656 timer.durationUsecs() / 1000.0);
/frameworks/rs/driver/
H A DrsdRuntimeStubs.cpp413 time_t SC_Time(time_t *timer) { argument
415 return rsrTime(rsc, sc, timer);
418 tm* SC_LocalTime(tm *local, time_t *timer) { argument
420 return rsrLocalTime(rsc, sc, local, timer);
/frameworks/base/core/java/android/os/
H A DBatteryStats.java44 * A constant indicating a partial wake lock timer.
49 * A constant indicating a full wake lock timer.
54 * A constant indicating a window wake lock timer.
59 * A constant indicating a sensor timer.
64 * A constant indicating a a wifi running timer
69 * A constant indicating a full wifi lock timer
74 * A constant indicating a scan wifi lock timer
79 * A constant indicating a wifi multicast timer
84 * A constant indicating an audio turn on timer
89 * A constant indicating a video turn on timer
1098 computeWakeLock(Timer timer, long batteryRealtime, int which) argument
1118 printWakeLock(StringBuilder sb, Timer timer, long batteryRealtime, String name, int which, String linePrefix) argument
1150 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.java151 // A set of pools of currently active timers. When a timer is queried, we will divide the
152 // elapsed time by the number of active timers to arrive at that timer's share of the time.
153 // In order to do this, we must refresh each timer whenever the number of active timers
553 * Clear state of this timer. Returns true if the timer is inactive
610 * @param timer a Timer, or null.
612 public static void writeTimerToParcel(Parcel out, Timer timer, argument
614 if (timer == null) {
620 timer.writeToParcel(out, batteryRealtime);
849 * The last time at which we updated the timer
[all...]

Completed in 130 milliseconds