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

/frameworks/base/services/java/com/android/server/
H A DSystemServer.java1020 static Timer timer; field in class:SystemServer
1047 timer = new Timer();
1048 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/support/renderscript/v8/rs_support/
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/support/renderscript/v8/rs_support/driver/
H A DrsdRuntimeStubs.cpp194 time_t SC_Time(time_t *timer) { argument
196 return rsrTime(rsc, sc, timer);
199 tm* SC_LocalTime(tm *local, time_t *timer) { argument
201 return rsrLocalTime(rsc, sc, local, timer);
/frameworks/base/libs/androidfw/
H A DAssetManager.cpp1665 DurationTimer timer; local
1666 timer.start();
1672 timer.stop();
1674 timer.durationUsecs() / 1000.0);
/frameworks/rs/driver/
H A DrsdRuntimeStubs.cpp483 time_t SC_Time(time_t *timer) { argument
485 return rsrTime(rsc, sc, timer);
488 tm* SC_LocalTime(tm *local, time_t *timer) { argument
490 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
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
1100 private static long computeWakeLock(Timer timer, lon argument
1120 printWakeLock(StringBuilder sb, Timer timer, long batteryRealtime, String name, int which, String linePrefix) argument
1152 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
565 * Clear state of this timer. Returns true if the timer is inactive
622 * @param timer a Timer, or null.
624 public static void writeTimerToParcel(Parcel out, Timer timer, argument
626 if (timer == null) {
632 timer.writeToParcel(out, batteryRealtime);
861 * The last time at which we updated the timer
[all...]

Completed in 735 milliseconds