HomeSort by relevance Sort by last modified time
    Searched defs:timers (Results 1 - 17 of 17) sorted by null

  /external/libnfc-nxp/Linux_x86/
phOsalNfc_Timer.c 57 static struct phOsalNfc_Timer timers[MAX_NO_TIMERS] = variable in typeref:struct:phOsalNfc_Timer
88 if(timers[timer_msg->TimerId].ptr != NULL)
90 phOsalNfc_FreeMemory(timers[timer_msg->TimerId].ptr);
91 timers[timer_msg->TimerId].ptr = NULL;
100 * This callback is called by Linux whenever one the timers expires. It
109 if((timerid < MAX_NO_TIMERS)&&(timers[timerid].nIsStopped == 1))
139 timer_msg->pCallBck = timers[timerid].callback;
140 timer_msg->pContext = timers[timerid].pContext;
150 timers[timerid].ptr = osal_defer_msg;
155 (timers[timerid].callback)(timerid, timers[timerid].pContext)
    [all...]
  /external/chromium/base/
timer_unittest.cc 234 base::OneShotTimer<ResetHelper> timers[20]; local
235 for (size_t i = 0; i < arraysize(timers); ++i) {
236 timers[i].Start(TimeDelta::FromMilliseconds(i * 10), &reset_helper,
277 // that timers work properly in all configurations.
339 // timers not yet fired. It may only trigger exceptions
  /external/webkit/Source/WebKit/mac/Plugins/
WebNetscapePluginView.h 93 HashMap<uint32_t, PluginTimer*>* timers; variable
  /bionic/libc/bionic/
pthread-timers.c 36 // Normal (i.e. non-SIGEV_THREAD) timers are created directly by the kernel
40 // timers. See the following pages for additional details:
52 // the timers of the child process should be disarmed, but not deleted.
54 // stops all timers before the fork, and only re-start them in case of error
120 thr_timer_t timers[ MAX_THREAD_TIMERS ]; member in struct:thr_timer_table
123 /** GLOBAL TABLE OF THREAD TIMERS
135 t->timers[nn].id = TIMER_ID_NONE;
137 t->free_timer = &t->timers[0];
139 t->timers[nn-1].next = &t->timers[nn]
    [all...]
  /external/qemu/android/
looper-generic.c 265 ARefSet timers[1]; /* set of all timers */ member in struct:GLooper
266 GLoopTimer* activeTimers; /* sorted list of active timers */
279 arefSet_add(looper->timers, tt);
285 arefSet_del(looper->timers, tt);
417 /* Do we have any expired timers here ? */
436 /* Fire the pending timers, if any. We do that in a separate
438 * by starting/stopping other timers.
469 arefSet_done(looper->timers);
  /libcore/luni/src/main/java/java/util/
Timer.java 21 * Timers schedule one-shot or recurring {@link TimerTask tasks} for execution.
45 * releases the timer's thread and other resources. Timers not explicitly
59 private TimerTask[] timers = new TimerTask[DEFAULT_HEAP_SIZE]; field in class:Timer.TimerImpl.TimerHeap
66 return timers[0];
74 if (timers.length == size) {
76 System.arraycopy(timers, 0, appendedTimers, 0, size);
77 timers = appendedTimers;
79 timers[size++] = task;
86 timers[pos] = timers[--size]
    [all...]
  /packages/apps/DeskClock/src/com/android/deskclock/timer/
TimerObj.java 210 SharedPreferences prefs, ArrayList<TimerObj> timers) {
218 timers.add(t);
220 Collections.sort(timers, new Comparator<TimerObj>() {
230 SharedPreferences prefs, ArrayList<TimerObj> timers, int match) {
239 timers.add(t);
246 SharedPreferences prefs, ArrayList<TimerObj> timers) {
247 if (timers.size() > 0) {
248 for (int i = 0; i < timers.size(); i++) {
249 TimerObj t = timers.get(i);
250 timers.get(i).writeToSharedPref(prefs)
269 ArrayList<TimerObj> timers = new ArrayList<TimerObj>(); local
    [all...]
  /frameworks/base/core/java/android/os/
BatteryStats.java 1577 final ArrayList<TimerEntry> timers = new ArrayList<TimerEntry>(); local
1604 final ArrayList<TimerEntry> timers = new ArrayList<TimerEntry>(); local
    [all...]
  /bionic/libc/upstream-netbsd/libc/isc/
eventlib_p.h 253 /* Timers. */
255 heap_context timers; member in struct:__anon689
  /external/chromium/chrome/browser/
browser_about_handler.cc 690 // We maintain two lists - one for counters and one for timers.
691 // Timers actually get stored on both lists.
698 ListValue* timers; local
699 if (!root.GetList("timers", &timers)) {
700 timers = new ListValue();
701 root.Set("timers", timers);
763 // Store this on the timers list as well.
764 timers->Append(counter)
    [all...]
  /bionic/libc/kernel/arch-mips/asm/ip32/
mace.h 304 struct mace_timers timers; member in struct:mace_perif
  /development/ndk/platforms/android-9/arch-mips/include/asm/ip32/
mace.h 304 struct mace_timers timers; member in struct:mace_perif
  /external/kernel-headers/original/asm-mips/ip32/
mace.h 301 struct mace_timers timers; member in struct:mace_perif
  /prebuilts/ndk/8/platforms/android-14/arch-mips/usr/include/asm/ip32/
mace.h 304 struct mace_timers timers; member in struct:mace_perif
  /prebuilts/ndk/8/platforms/android-9/arch-mips/usr/include/asm/ip32/
mace.h 304 struct mace_timers timers; member in struct:mace_perif
  /frameworks/base/core/java/com/android/internal/os/
BatteryStatsImpl.java 143 // A set of pools of currently active timers. When a timer is queried, we will divide the
144 // elapsed time by the number of active timers to arrive at that timer's share of the time.
145 // In order to do this, we must refresh each timer whenever the number of active timers
157 // Last partial timers we use for distributing CPU usage.
4186 ArrayList<StopwatchTimer> timers = mSensorTimers.get(sensor); local
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.sat4j.core_2.2.0.v20100429.jar 

Completed in 1304 milliseconds