HomeSort by relevance Sort by last modified time
    Searched refs:timer (Results 401 - 425 of 960) sorted by null

<<11121314151617181920>>

  /external/qemu/hw/arm/
armv7m_nvic.c 14 #include "qemu/timer.h"
41 QEMUTimer *timer; member in struct:__anon33384::__anon33385
55 /* Conversion factor from qemu timer to SysTick frequencies. */
69 timer_mod(s->systick.timer, s->systick.tick);
143 /* The interrupt in triggered when the timer reaches zero.
280 timer_mod(s->systick.timer, s->systick.tick);
285 timer_del(s->systick.timer);
291 /* This is a hack. Force the timer to be reloaded
299 case 0x18: /* SysTick Current Value. Writes reload the timer. */
375 timer_put(f, s->systick.timer);
    [all...]
  /external/srec/audio/AudioIn/UNIX/src/
audioin.c 152 static struct timeval timer; /* timer used by select to relinquish cpu times */ variable in typeref:struct:timeval
525 timer.tv_sec = 0;
526 timer.tv_usec = 200;
527 select ( 0, NULL, NULL, NULL, &timer );
767 timer.tv_sec = 0;
768 timer.tv_usec = 200;
769 select ( 0, NULL, NULL, NULL, &timer );
    [all...]
  /bionic/libc/upstream-netbsd/lib/libc/isc/
ev_streams.c 135 evTimeRW(evContext opaqueCtx, evStreamID id, evTimerID timer) /*ARGSUSED*/ {
140 str->timer = timer;
279 evTouchIdleTimer(opaqueCtx, str->timer);
302 evTouchIdleTimer(opaqueCtx, str->timer);
  /external/bison/lib/
timevar.c 154 timer. */
238 /* Add the difference between STOP and START to TIMER. */
241 timevar_accumulate (timer, start, stop)
242 struct timevar_time_def *timer;
246 timer->user += stop->user - start->user;
247 timer->sys += stop->sys - start->sys;
248 timer->wall += stop->wall - start->wall;
281 TIMEVAR cannot be running as a standalone timer. */
297 /* Can't push a standalone timer. */
427 /* Is TIMEVAR currently running as a standalone timer? *
    [all...]
  /external/libnfc-nci/src/nfa/hci/
nfa_hci_main.c 129 nfa_sys_stop_timer (&nfa_hci_cb.timer);
134 nfa_sys_start_timer (&nfa_hci_cb.timer, NFA_HCI_RSP_TIMEOUT_EVT, p_nfa_hci_cfg->hci_netwk_enable_timeout);
163 nfa_sys_stop_timer (&nfa_hci_cb.timer);
453 nfa_sys_stop_timer (&nfa_hci_cb.timer);
477 nfa_sys_start_timer (&nfa_hci_cb.timer, NFA_HCI_RSP_TIMEOUT_EVT, NFA_EE_DISCV_TIMEOUT_VAL);
483 nfa_sys_start_timer (&nfa_hci_cb.timer, NFA_HCI_RSP_TIMEOUT_EVT, p_nfa_hci_cfg->hci_netwk_enable_timeout);
492 nfa_sys_start_timer (&nfa_hci_cb.timer, NFA_HCI_RSP_TIMEOUT_EVT, p_nfa_hci_cfg->hci_netwk_enable_timeout);
516 nfa_sys_stop_timer (&nfa_hci_cb.timer);
582 nfa_sys_start_timer (&nfa_hci_cb.timer, NFA_HCI_RSP_TIMEOUT_EVT, NFA_HCI_CON_CREATE_TIMEOUT_VAL);
615 nfa_sys_start_timer (&nfa_hci_cb.timer, NFA_HCI_RSP_TIMEOUT_EVT, NFA_HCI_NV_READ_TIMEOUT_VAL)
    [all...]
  /external/chromium_org/chrome/browser/resources/cryptotoken/
signer.js 85 var timer = new CountdownTimer(timeoutMillis);
90 var queuedSignRequest = new QueuedSignRequest(signData, factory, timer,
94 queuedSignRequest.begin.bind(queuedSignRequest), timer);
119 * @param {Countdown} timer Timeout timer
128 function QueuedSignRequest(signData, factory, timer, origin, errorCb, successCb,
135 this.timer_ = timer;
214 * @param {Countdown} timer Timer for sign request.
224 function Signer(helperFactory, timer, origin, errorCb, successCb
    [all...]
  /external/qemu/android/
hw-sensors.c 22 #include "qemu/timer.h"
149 * - each timer tick, this code sends sensor reports in the following
182 QEMUTimer* timer; member in struct:HwSensorClient
212 /* remove timer, if any */
213 if (cl->timer) {
214 timer_del(cl->timer);
215 timer_free(cl->timer);
216 cl->timer = NULL;
235 cl->timer = timer_new(QEMU_CLOCK_VIRTUAL, SCALE_NS, _hwSensorClient_tick, cl);
285 * to the HAL module, and re-arm the timer if necessar
    [all...]
  /packages/apps/DeskClock/src/com/android/deskclock/timer/
TimerReceiver.java 17 package com.android.deskclock.timer;
66 // These actions do not provide a timer ID, but do use the timers data
78 // Remaining actions provide a timer Id
81 Log.e(TAG, "got intent without Timer data");
85 // Get the timer out of the Intent
88 Log.d(TAG, "OnReceive:intent without Timer data for " + actionType);
94 // Find the timer (if it doesn't exists, it was probably deleted).
96 Log.d(TAG, " timer not found in list - do nothing");
127 // Find the timer (if it doesn't exists, it was probably deleted).
129 Log.d(TAG, "timer to stop not found in list - do nothing")
257 TimerObj timer = timersInUse.get(0); local
267 TimerObj timer = getNextRunningTimer(timersInUse, false, now); local
    [all...]
  /external/chromium_org/chrome/browser/chromeos/attestation/
platform_verification_flow.cc 12 #include "base/timer/timer.h"
270 scoped_ptr<base::Timer> timer(new base::Timer(false, // Don't retain.
276 timer->Start(FROM_HERE, timeout_delay_, timeout_callback);
283 base::Passed(&timer));
295 scoped_ptr<base::Timer> timer,
298 // Log failure before checking the timer so all failures are logged, even i
    [all...]
  /external/chromium_org/media/ffmpeg/
ffmpeg_unittest.cc 427 base::PerfTimeLogger timer("Opening file");
431 base::PerfTimeLogger timer("Opening codecs");
435 base::PerfTimeLogger timer("Reading file");
439 base::PerfTimeLogger timer("Decoding audio");
443 base::PerfTimeLogger timer("Decoding video");
447 base::PerfTimeLogger timer("Seeking to zero");
  /external/chromium_org/base/i18n/
streaming_utf8_validator_perftest.cc 89 base::PerfTimeLogger timer(description.c_str());
94 timer.Done();
  /external/chromium_org/net/proxy/
proxy_resolver_perftest.cc 131 // Start the perf timer.
133 base::PerfTimeLogger timer(perf_test_name.c_str());
152 timer.Done();
  /external/chromium_org/remoting/webapp/browser_test/
invalid_pin_browser_test.js 29 // Sleep for two seconds to allow the host backoff timer to reset.
  /external/chromium_org/third_party/libjingle/source/talk/base/
maccocoasocketserver.mm 53 - (void)timerFired:(NSTimer*)timer {
60 // current event. Since we're potentially in a timer callback
115 // Install a timer that fires wakeup after cms has elapsed.
  /external/chromium_org/third_party/webrtc/base/
maccocoasocketserver.mm 36 - (void)timerFired:(NSTimer*)timer {
43 // current event. Since we're potentially in a timer callback
98 // Install a timer that fires wakeup after cms has elapsed.
  /external/jmdns/src/javax/jmdns/impl/tasks/
Responder.java 9 import java.util.Timer;
62 * @see javax.jmdns.impl.tasks.DNSTask#start(java.util.Timer)
65 public void start(Timer timer) {
91 timer.schedule(this, delay);
  /external/libnfc-nci/src/nfa/sys/
nfa_sys_main.c 32 /* protocol timer update period, in milliseconds */
56 nfa_sys_ptim_init (&nfa_sys_cb.ptim_cb, NFA_SYS_TIMER_PERIOD, p_nfa_sys_cfg->timer);
103 ** Description Update the BTA timer list and handle expired timers.
206 /* DM (the final sub-system) is deregistering. Clear pending timer events in nfa_sys. */
207 nfa_sys_ptim_init (&nfa_sys_cb.ptim_cb, NFA_SYS_TIMER_PERIOD, p_nfa_sys_cfg->timer);
367 ** Description Start a protocol timer for the specified amount
382 ** Description Stop a BTA timer.
397 ** Description Disable sys timer event handling
  /external/qemu/
main-loop.c 35 #include "qemu/timer.h"
381 timer_t timer; member in struct:qemu_alarm_timer
383 HANDLE timer; member in struct:qemu_alarm_timer
403 /* rearm timer, if not periodic */
529 // timer callback, which can be a signal handler on non-Windows platforms.
541 // it calls qemu-timer.c functions that acquire/release global mutexes.
570 // if a timer has really expired, in the case of non-dynamic alarms,
615 t->timer = host_timer;
622 timer_t host_timer = t->timer;
629 timer_t host_timer = t->timer;
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
GestureToolTip.java 73 /** The new value for {@link #mBelow} when the timer expires */
76 /** The new value for {@link #mToRightOf} when the timer expires */
118 * are queued up with a timer (unless it's been a while since the last change, in
159 // to flicker, instead we react on a timer to changes in alignment below.
184 // Yes, so schedule a timer (unless one is already scheduled)
187 final Runnable timer = new Runnable() { local
203 mShell.getDisplay().timerExec(TIMEOUT_MS, timer);
  /developers/samples/android/wearable/wear/Timer/Wearable/src/main/java/com/example/android/timer/
WearableListItemLayout.java 17 package com.example.android.timer;
  /development/ndk/platforms/android-3/include/linux/sunrpc/
clnt.h 21 #include <linux/sunrpc/timer.h>
  /development/samples/wearable/Timer/Wearable/src/main/java/com/example/android/wearable/timer/
WearableListItemLayout.java 17 package com.example.android.wearable.timer;
  /external/chromium_org/chrome/browser/ui/cocoa/panels/
panel_titlebar_view_cocoa.h 102 - (void)restartGlintAnimation:(NSTimer*)timer;
  /external/chromium_org/chrome/test/perf/
url_parse_perftest.cc 30 base::PerfTimeLogger timer("Full_URL_Parse_AMillion");
34 timer.Done();
  /external/chromium_org/extensions/renderer/
script_injection.h 16 #include "base/timer/elapsed_timer.h"
51 base::ElapsedTimer timer; member in struct:extensions::ScriptInjection::ScriptsRunInfo

Completed in 1964 milliseconds

<<11121314151617181920>>