Searched refs:delay (Results 51 - 75 of 276) sorted by relevance

1234567891011>>

/external/chromium/base/
H A Devent_recorder.cc123 // Each time the event is requested, we must calculate the new delay.
125 // re-compute the delay. I mention this only because I saw two examples
205 int delay = 0; local
240 // time this is called, we recalculate the delay relative to our current
242 delay = (playback_msg_.time - playback_first_msg_time_) -
244 if (delay < 0)
245 delay = 0;
246 return delay;
H A Dmessage_pump_win.cc69 // value in milliseconds. If there are 5.5ms left, should the delay be 5 or
75 int delay = static_cast<int>(timeout); local
76 if (delay < 0)
77 delay = 0;
79 return delay;
250 int delay = GetCurrentDelay(); local
251 if (delay < 0) // Negative value means no timers waiting.
252 delay = INFINITE;
255 result = MsgWaitForMultipleObjectsEx(0, NULL, delay, QS_ALLINPUT,
/external/guava/guava-tests/test/com/google/common/util/concurrent/
H A DJSR166TestCase.java263 * Returns the shortest timed delay. This could
481 * Delays, via Thread.sleep, for the given millisecond delay, but
485 static void delay(long millis) throws InterruptedException { method in class:JSR166TestCase
518 * millisecond delay of {@code timeoutMillis()}.
525 * Checks that thread does not terminate within the given millisecond delay.
530 delay(millis);
539 * millisecond delay of {@code timeoutMillis()}.
546 * Checks that the threads do not terminate within the given millisecond delay.
551 delay(millis);
711 delay(milli
[all...]
/external/jmdns/src/javax/jmdns/impl/tasks/
H A DResponder.java83 int delay = (iAmTheOnlyOne && !_in.isTruncated()) ? 0 : DNSConstants.RESPONSE_MIN_WAIT_INTERVAL + JmDNSImpl.getRandom().nextInt(DNSConstants.RESPONSE_MAX_WAIT_INTERVAL - DNSConstants.RESPONSE_MIN_WAIT_INTERVAL + 1) - _in.elapseSinceArrival();
84 if (delay < 0) {
85 delay = 0;
88 logger.finest(this.getName() + "start() Responder chosen delay=" + delay);
91 timer.schedule(this, delay);
/external/chromium/third_party/libjingle/source/talk/base/
H A Dmessagequeue.cc211 long delay = TimeDiff(msCurrent, pmsg->ts_sensitive); local
212 if (delay > 0) {
213 LOG_F(LS_WARNING) << "id: " << pmsg->message_id << " delay: "
214 << (delay + kMaxMsgLatency) << "ms";
230 // Which is shorter, the delay wait or the asked wait?
313 int delay = TimeUntil(dmsgq_.top().msTrigger_); local
314 if (delay < 0)
315 delay = 0;
316 return delay;
/external/guava/guava/src/com/google/common/util/concurrent/
H A DAbstractScheduledService.java111 * @param initialDelay the time to delay first execution
112 * @param delay the delay between the termination of one execution and the commencement of the
114 * @param unit the time unit of the initialDelay and delay parameters
116 public static Scheduler newFixedDelaySchedule(final long initialDelay, final long delay, argument
122 return executor.scheduleWithFixedDelay(task, initialDelay, delay, unit);
131 * @param initialDelay the time to delay first execution
359 currentFuture = executor.schedule(this, schedule.delay, schedule.unit);
401 * A value object that represents an absolute delay until a task should be invoked.
409 private final long delay; field in class:AbstractScheduledService.CustomScheduler.Schedule
416 Schedule(long delay, TimeUnit unit) argument
[all...]
H A DMoreExecutors.java455 Runnable command, long delay, TimeUnit unit) {
456 return delegate.schedule(command, delay, unit);
461 Callable<V> callable, long delay, TimeUnit unit) {
462 return delegate.schedule(callable, delay, unit);
473 Runnable command, long initialDelay, long delay, TimeUnit unit) {
475 command, initialDelay, delay, unit);
454 schedule( Runnable command, long delay, TimeUnit unit) argument
460 schedule( Callable<V> callable, long delay, TimeUnit unit) argument
472 scheduleWithFixedDelay( Runnable command, long initialDelay, long delay, TimeUnit unit) argument
/external/webkit/Source/WebCore/platform/network/
H A DHTTPParsers.cpp105 bool parseHTTPRefresh(const String& refresh, bool fromHttpEquivMeta, double& delay, String& url) argument
119 delay = refresh.stripWhiteSpace().toDouble(&ok);
123 delay = refresh.left(pos).stripWhiteSpace().toDouble(&ok);
/external/libppp/src/
H A Dcbcp.c68 cbcp->fsm.delay = 0;
185 u_char delay; member in struct:cbcp_data
243 if ((char *)&data->delay < end) {
244 log_Printf(LogCBCP, " DELAY %d\n", data->delay);
268 data.delay = 0;
302 data.length = (char *)&data.delay - (char *)&data;
309 cbcp_StartTimer(cbcp, cbcp->fsm.delay);
318 cbcp->fsm.delay = cbcp->p->dl->cfg.cbcp.delay;
336 cbcp_StartTimer(cbcp, cbcp->fsm.delay * DEF_FSMTRIE
[all...]
/external/chromium/chrome/browser/policy/
H A Dfile_based_policy_loader.h47 // and then delays until it is considered safe to reload in |delay|.
49 bool IsSafeToReloadPolicy(const base::Time& now, base::TimeDelta* delay);
H A Dasynchronous_policy_loader.cc28 // to delay the remainder of initialization until threading is fully
102 const base::TimeDelta& delay) {
110 delay.InMilliseconds());
101 ScheduleReloadTask( const base::TimeDelta& delay) argument
/external/qemu/android/
H A Dandroid.h96 /* parse a network delay parameter and sets qemu_net_min/max_latency
98 extern int android_parse_network_latency(const char* delay);
/external/skia/include/views/
H A DSkEventSink.h71 void postToListeners(const SkEvent& evt, SkMSec delay = 0);
H A DSkOSWindow_Win.h24 static bool PostEvent(SkEvent* evt, SkEventSinkID, SkMSec delay);
/external/skia/src/animator/
H A DSkDisplayPost.h42 SkMSec delay; member in class:SkPost
/external/replicaisland/src/com/replica/replicaisland/
H A DAttackAtDistanceComponent.java79 public void setupAttack(float distance, float delay, float duration, boolean requireFacing) { argument
81 mAttackDelay = delay;
H A DPopOutComponent.java109 public void setupAttack(float distance, float delay, float duration) { argument
111 mAttackDelay = delay;
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.equinox.p2.updatechecker_1.1.101.R36x_v20100823.jar ... java.lang.Thread { boolean done long poll long delay org.eclipse.equinox.internal.provisional. ...
/external/jmdns/src/javax/jmdns/impl/
H A DDNSTaskStarter.java206 public synchronized void schedule(TimerTask task, long delay) { argument
208 super.schedule(task, delay);
226 public synchronized void schedule(TimerTask task, long delay, long period) { argument
228 super.schedule(task, delay, period);
246 public synchronized void scheduleAtFixedRate(TimerTask task, long delay, long period) { argument
248 super.scheduleAtFixedRate(task, delay, period);
/external/libnfc-nci/halimpl/bcm2079x/gki/ulinux/
H A Dgki_ulinux.c450 struct timespec delay; local
456 delay.tv_sec = timeout / 1000;
457 delay.tv_nsec = 1000 * 1000 * (timeout%1000);
463 err = nanosleep(&delay, &delay);
516 struct timespec delay; local
551 delay.tv_sec = LINUX_SEC / 1000;
552 delay.tv_nsec = 1000 * 1000 * (LINUX_SEC % 1000);
557 err = nanosleep(&delay, &delay);
775 struct timespec delay; local
[all...]
/external/libnfc-nci/src/gki/ulinux/
H A Dgki_ulinux.c450 struct timespec delay; local
456 delay.tv_sec = timeout / 1000;
457 delay.tv_nsec = 1000 * 1000 * (timeout%1000);
463 err = nanosleep(&delay, &delay);
491 struct timespec delay; local
526 delay.tv_sec = LINUX_SEC / 1000;
527 delay.tv_nsec = 1000 * 1000 * (LINUX_SEC % 1000);
532 err = nanosleep(&delay, &delay);
750 struct timespec delay; local
[all...]
/external/qemu/distrib/sdl-1.2.15/src/events/
H A DSDL_keyboard.c43 int firsttime; /* if we check against the delay or repeat value */
44 int delay; /* the delay before we start repeating */ member in struct:__anon10518
45 int interval; /* the delay between key repeat events */
557 if (repeatable && (SDL_KeyRepeat.delay != 0)) {
581 if ( interval > (Uint32)SDL_KeyRepeat.delay ) {
596 int SDL_EnableKeyRepeat(int delay, int interval) argument
598 if ( (delay < 0) || (interval < 0) ) {
603 SDL_KeyRepeat.delay = delay;
609 SDL_GetKeyRepeat(int *delay, int *interval) argument
[all...]
/external/ppp/pppd/
H A Dcbcp.c233 int code, opt, id, len, olen, delay; local
274 GETCHAR(delay, p);
275 printer(arg, " delay = %d", delay);
310 u_char type, opt_len, delay, addr_type; local
325 GETCHAR(delay, pckt);
391 PUTCHAR(5, bufp); /* delay */
403 PUTCHAR(5, bufp); /* delay */
451 u_char type, delay, addr_type; local
461 GETCHAR(delay, pck
[all...]
/external/webrtc/src/modules/audio_processing/test/
H A Dunpack.cc36 DEFINE_string(delay_file, "delay.int32", "The name of the delay file.");
169 int32_t delay = msg.delay(); local
170 if (fwrite(&delay, sizeof(int32_t), 1, delay_file) != 1) {
/external/chromium/chrome/browser/resources/ntp4/
H A Dmost_visited_page.css81 -webkit-transition-delay: .5s;
178 /* The border radiuses have 0 transition duration but .15s delay, meaning they
180 -webkit-transition-delay: 0, .15s, .15s, 0;
197 -webkit-transition-delay: 0, .5s, .5s, 0;
202 -webkit-transition-delay: 0, 0, 0, 0;

Completed in 1103 milliseconds

1234567891011>>