Searched refs:delay (Results 101 - 125 of 554) sorted by relevance

1234567891011>>

/external/chromium_org/media/video/capture/
H A Dvideo_capture_types.h65 int delay,
72 expected_capture_delay(delay),
81 int expected_capture_delay; // Expected delay in millisecond.
61 VideoCaptureCapability(int width, int height, int frame_rate, Format color, int delay, bool interlaced, VideoCaptureResolutionType frame_size_type) argument
/external/chromium_org/webkit/glue/
H A Dwebkit_glue_unittest.cc51 virtual void OnStartSharedTimer(base::TimeDelta delay) OVERRIDE {
52 shared_timer_delay_ = delay;
/external/guava/guava-tests/test/com/google/common/util/concurrent/
H A DAbstractScheduledServiceTest.java54 long delay, TimeUnit unit) {
55 return future = super.scheduleWithFixedDelay(command, initialDelay, delay, unit);
235 private static final int delay = 20; field in class:AbstractScheduledServiceTest.SchedulerTest
243 long delay, TimeUnit unit) {
247 assertEquals(SchedulerTest.delay, delay);
253 Scheduler schedule = Scheduler.newFixedRateSchedule(initialDelay, delay, unit);
258 assertSingleCallWithCorrectParameters(command, initialDelay, delay, unit);
266 Scheduler schedule = Scheduler.newFixedDelaySchedule(initialDelay, delay, unit);
270 long delay, TimeUni
242 assertSingleCallWithCorrectParameters(Runnable command, long initialDelay, long delay, TimeUnit unit) argument
[all...]
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/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;
/external/chromium_org/base/
H A Devent_recorder_win.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 Dtask_runner.h32 // - Increasing the delay can only delay when the task gets run.
33 // That is, increasing the delay may not affect when the task gets
76 base::TimeDelta delay) = 0;
/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/chromium_org/third_party/libjingle/source/talk/base/
H A Dmessagequeue.cc216 int32 delay = TimeDiff(msCurrent, pmsg->ts_sensitive); local
217 if (delay > 0) {
218 LOG_F(LS_WARNING) << "id: " << pmsg->message_id << " delay: "
219 << (delay + kMaxMsgLatency) << "ms";
235 // Which is shorter, the delay wait or the asked wait?
318 int delay = TimeUntil(dmsgq_.top().msTrigger_); local
319 if (delay < 0)
320 delay = 0;
321 return delay;
/external/chromium_org/third_party/skia/src/animator/
H A DSkDisplayPost.cpp29 SK_MEMBER(delay, MSec),
41 SkPost::SkPost() : delay(0), /*initialized(SkBool(-1)), */ mode(kImmediate), fMaker(NULL),
78 if (delay > 0) {
79 SkDebugf("delay=\"%g\" ", SkScalarToFloat(SkScalarDiv(delay, 1000)));
197 debugOut.append(" delay=");
198 debugOut.appendS32(delay);
201 // SkMSec adjustedDelay = maker.adjustDelay(maker.fEnableTime, delay);
202 SkMSec futureTime = maker.fEnableTime + delay;
222 if (delay
[all...]
/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...]
/external/skia/src/animator/
H A DSkDisplayPost.cpp29 SK_MEMBER(delay, MSec),
41 SkPost::SkPost() : delay(0), /*initialized(SkBool(-1)), */ mode(kImmediate), fMaker(NULL),
78 if (delay > 0) {
79 SkDebugf("delay=\"%g\" ", SkScalarToFloat(SkScalarDiv(delay, 1000)));
197 debugOut.append(" delay=");
198 debugOut.appendS32(delay);
201 // SkMSec adjustedDelay = maker.adjustDelay(maker.fEnableTime, delay);
202 SkMSec futureTime = maker.fEnableTime + delay;
222 if (delay
[all...]
/external/chromium_org/base/threading/
H A Dsequenced_worker_pool.h183 // delay are posted with SKIP_ON_SHUTDOWN behavior and tasks with zero delay
190 // delay are posted with SKIP_ON_SHUTDOWN behavior and tasks with zero delay
197 // the given shutdown behavior. Tasks with nonzero delay are posted with
198 // SKIP_ON_SHUTDOWN behavior and tasks with zero delay are posted with the
226 // Same as PostWorkerTask but allows a delay to be specified (although doing
228 // delay has elapsed.
230 // If the delay is nonzero, the task won't be guaranteed to run to completion
232 // If the delay i
[all...]
/external/chromium_org/chrome/browser/chromeos/drive/
H A Dsync_client.h83 // Sets a delay for testing.
84 void set_delay_for_testing(const base::TimeDelta& delay) { argument
85 delay_ = delay;
96 const base::TimeDelta& delay);
158 // The delay is used for delaying processing tasks in AddTaskToQueue().
161 // The delay is used for delaying retry of tasks on server errors.
/external/chromium_org/chrome/browser/web_resource/
H A Dweb_resource_service.cc72 int64 delay = start_fetch_delay_ms_; local
86 delay = ms_until_update;
90 ScheduleFetch(delay);
/external/chromium_org/chrome/test/chromedriver/chrome/
H A Dnavigation_tracker.cc91 double delay; local
92 if (!params.GetDouble("delay", &delay))
93 return Status(kUnknownError, "missing or invalid 'delay'");
100 if (delay > 1)
/external/chromium_org/content/browser/dom_storage/
H A Ddom_storage_task_runner.h42 base::TimeDelta delay) = 0;
69 // is used to delay scheduling on the worker pool.
82 base::TimeDelta delay) OVERRIDE;
108 // all tasks are scheduled on |message_loop| with zero delay.
117 base::TimeDelta delay) OVERRIDE;
/external/chromium_org/content/renderer/pepper/
H A Dpepper_hung_plugin_filter.cc136 base::TimeDelta delay = GetHungTime() - base::TimeTicks::Now();
137 if (delay > base::TimeDelta()) {
145 delay);
/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);
/external/chromium_org/chrome/browser/policy/
H A Dpolicy_statistics_collector.h48 void ScheduleUpdate(base::TimeDelta delay);
/external/chromium_org/cloud_print/gcp20/prototype/
H A Dcloud_print_xmpp_listener.cc139 int delay = (ping_responses_pending_ > 0) local
143 delay += base::RandInt(0, delay*kRandomDelayPercentage);
148 base::TimeDelta::FromSeconds(delay));
/external/chromium_org/content/browser/renderer_host/input/
H A Dtap_suppression_controller.h48 virtual void StartTapDownTimer(const base::TimeDelta& delay);
/external/chromium_org/net/quic/test_tools/
H A Dtest_task_runner.h31 base::TimeDelta delay) OVERRIDE;

Completed in 787 milliseconds

1234567891011>>