HomeSort by relevance Sort by last modified time
    Searched refs:deadline (Results 1 - 25 of 247) sorted by null

1 2 3 4 5 6 7 8 910

  /external/chromium_org/third_party/WebKit/public/web/
WebBeginFrameArgs.h 11 WebBeginFrameArgs(double lastFrameTimeMonotonic, double deadline, double interval)
13 , deadline(deadline)
20 , deadline(0)
33 // Time in CLOCK_MONOTONIC by which the renderer should finish producing the current frame. 0 means a deadline wasn't set.
34 double deadline; member in struct:blink::WebBeginFrameArgs
  /external/chromium_org/net/quic/
quic_alarm.cc 18 void QuicAlarm::Set(QuicTime deadline) {
20 DCHECK(deadline.IsInitialized());
21 deadline_ = deadline;
30 void QuicAlarm::Update(QuicTime deadline, QuicTime::Delta granularity) {
31 if (!deadline.IsInitialized()) {
35 if (std::abs(deadline.Subtract(deadline_).ToMicroseconds()) <
40 Set(deadline);
53 QuicTime deadline = delegate_->OnAlarm(); local
56 if (!deadline_.IsInitialized() && deadline.IsInitialized()) {
57 Set(deadline);
    [all...]
quic_alarm.h 34 // Sets the alarm to fire at |deadline|. Must not be called while
37 void Set(QuicTime deadline);
45 // Cancels and sets the alarm if the |deadline| is farther from the current
46 // deadline than |granularity|, and otherwise does nothing. If |deadline| is
48 void Update(QuicTime deadline, QuicTime::Delta granularity);
52 QuicTime deadline() const { return deadline_; } function in class:net::QuicAlarm
57 // deadline has been updated.
65 // delegates |OnAlarm| if a delegate is set, and if the deadline
68 // the situation where the task executes before the deadline has bee
    [all...]
quic_alarm_test.cc 36 DCHECK(deadline().IsInitialized());
41 DCHECK(!deadline().IsInitialized());
75 QuicTime deadline = QuicTime::Zero().Add(QuicTime::Delta::FromSeconds(7)); local
76 alarm_.Set(deadline);
79 EXPECT_EQ(deadline, alarm_.deadline());
83 QuicTime deadline = QuicTime::Zero().Add(QuicTime::Delta::FromSeconds(7)); local
84 alarm_.Set(deadline);
88 EXPECT_EQ(QuicTime::Zero(), alarm_.deadline());
92 QuicTime deadline = QuicTime::Zero().Add(QuicTime::Delta::FromSeconds(7)) local
102 QuicTime deadline = QuicTime::Zero().Add(QuicTime::Delta::FromSeconds(7)); local
111 QuicTime deadline = QuicTime::Zero().Add(QuicTime::Delta::FromSeconds(7)); local
    [all...]
quic_connection_helper.cc 33 DCHECK(deadline().IsInitialized());
35 if (task_deadline_ <= deadline()) {
37 // will notice that deadline has not yet been reached, and will set
38 // the alarm for the new deadline.
41 // The scheduled task is after new deadline. Invalidate the weak ptrs
46 int64 delay_us = deadline().Subtract(clock_->Now()).ToMicroseconds();
54 task_deadline_ = deadline();
58 DCHECK(!deadline().IsInitialized());
60 // will notice that deadline is not Initialized and will do nothing.
68 if (!deadline().IsInitialized())
    [all...]
  /external/chromium_org/mojo/public/c/system/
functions.h 48 // |MOJO_RESULT_FAILED_PRECONDITION| return values below), or until |deadline|
51 // If |deadline| is |MOJO_DEADLINE_INDEFINITE|, this will wait "forever" (until
52 // one of the other wait termination conditions is satisfied). If |deadline| is
64 // |MOJO_RESULT_DEADLINE_EXCEEDED| if the deadline has passed without any of
75 MojoDeadline deadline);
80 // |signals[i]| will ever be satisfied, or until |deadline| has passed.
86 // See |MojoWait()| for more details about |deadline|.
95 // |MOJO_RESULT_DEADLINE_EXCEEDED| if the deadline has passed without any of
102 MojoDeadline deadline);
  /external/okhttp/okio/src/main/java/okio/
Sink.java 58 * Sets the deadline for all operations on this sink.
61 Sink deadline(Deadline deadline); method in interface:Sink
Source.java 71 * Sets the deadline for all operations on this source.
74 Source deadline(Deadline deadline); method in interface:Source
Okio.java 61 private Deadline deadline = Deadline.NONE;
67 deadline.throwIfReached();
91 @Override public Sink deadline(Deadline deadline) { method
92 if (deadline == null) throw new IllegalArgumentException("deadline == null");
93 this.deadline = deadline
124 @Override public Source deadline(Deadline deadline) { method
    [all...]
  /external/chromium_org/third_party/libvpx/source/libvpx/test/
codec_factory.h 36 unsigned long deadline) const = 0;
39 unsigned long deadline,
72 VP8Decoder(vpx_codec_dec_cfg_t cfg, unsigned long deadline)
73 : Decoder(cfg, deadline) {}
87 VP8Encoder(vpx_codec_enc_cfg_t cfg, unsigned long deadline,
89 : Encoder(cfg, deadline, init_flags, stats) {}
106 unsigned long deadline) const {
108 return new VP8Decoder(cfg, deadline);
115 unsigned long deadline,
119 return new VP8Encoder(cfg, deadline, init_flags, stats)
    [all...]
  /external/libvpx/libvpx/test/
codec_factory.h 36 unsigned long deadline) const = 0;
39 unsigned long deadline,
72 VP8Decoder(vpx_codec_dec_cfg_t cfg, unsigned long deadline)
73 : Decoder(cfg, deadline) {}
87 VP8Encoder(vpx_codec_enc_cfg_t cfg, unsigned long deadline,
89 : Encoder(cfg, deadline, init_flags, stats) {}
106 unsigned long deadline) const {
108 return new VP8Decoder(cfg, deadline);
115 unsigned long deadline,
119 return new VP8Encoder(cfg, deadline, init_flags, stats)
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/test/
codec_factory.h 36 unsigned long deadline) const = 0;
39 unsigned long deadline,
72 VP8Decoder(vpx_codec_dec_cfg_t cfg, unsigned long deadline)
73 : Decoder(cfg, deadline) {}
87 VP8Encoder(vpx_codec_enc_cfg_t cfg, unsigned long deadline,
89 : Encoder(cfg, deadline, init_flags, stats) {}
106 unsigned long deadline) const {
108 return new VP8Decoder(cfg, deadline);
115 unsigned long deadline,
119 return new VP8Encoder(cfg, deadline, init_flags, stats)
    [all...]
  /external/chromium_org/cc/output/
begin_frame_args.cc 14 deadline(base::TimeTicks()),
19 base::TimeTicks deadline,
22 deadline(deadline),
27 base::TimeTicks deadline,
29 return BeginFrameArgs(frame_time, deadline, interval);
43 state->SetDouble("deadline_us", deadline.ToInternalValue());
50 // so we set the deadline to 0 and guess that the interval is 16 milliseconds.
56 // This is a hard-coded deadline adjustment that assumes 60Hz, to be used in
begin_frame_args.h 29 base::TimeTicks deadline,
34 // This is the default delta that will be used to adjust the deadline when
44 // deadline has passed, since the deadline is also used to trigger BeginFrame
54 base::TimeTicks deadline; member in struct:cc::BeginFrameArgs
59 base::TimeTicks deadline,
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/
browser_test_driver.py 40 def start(self, pixel_tests, per_test_args, deadline):
43 If a path is found by the deadline test test will open the file and
53 self._open_stdin_path(deadline)
62 def _open_stdin_path(self, deadline, test=False):
65 path, found = self._read_stdin_path(deadline)
70 def _read_stdin_path(self, deadline):
72 block = self._read_block(deadline)
server_process_mock.py 49 def read_stdout_line(self, deadline):
52 def read_stdout(self, deadline, size):
59 return first_line + "\n" + self.read_stdout(deadline, remaining_size)
67 def read_either_stdout_or_stderr_line(self, deadline):
69 return self.read_stdout_line(deadline), None
  /external/okhttp/okio/src/test/java/okio/
RealBufferedSourceReadUtf8LineTest.java 30 @Override public Source deadline(Deadline deadline) {
  /external/bluetooth/bluedroid/osi/include/
alarm.h 36 // Sets an alarm to fire |cb| after the given |deadline|. Note that |deadline| is the
41 void alarm_set(alarm_t *alarm, period_ms_t deadline, alarm_callback_t cb, void *data);
  /external/chromium_org/mojo/common/
handle_watcher.h 26 // when the handle is ready, or the deadline has expired.
37 // notified when the handle is ready, invalid or deadline has passed and is
43 MojoDeadline deadline,
  /external/chromium_org/mojo/public/c/environment/
async_waiter.h 48 MojoDeadline deadline,
  /external/chromium_org/mojo/public/java/system/src/org/chromium/mojo/system/
AsyncWaiter.java 51 Cancellable asyncWait(Handle handle, HandleSignals signals, long deadline, Callback callback);
Handle.java 28 public int wait(Core.HandleSignals signals, long deadline);
  /libcore/luni/src/main/java/java/util/concurrent/locks/
Condition.java 348 * or the specified deadline elapses.
361 * <li>The specified deadline elapses; or
382 * <p>The return value indicates whether the deadline has elapsed,
385 * boolean aMethod(Date deadline) {
392 * stillWaiting = theCondition.awaitUntil(deadline);
411 * of the specified deadline. In either case the implementation
415 * @param deadline the absolute time to wait until
416 * @return {@code false} if the deadline has elapsed upon return, else
421 boolean awaitUntil(Date deadline) throws InterruptedException;
LockSupport.java 204 * the specified deadline, unless the permit is available.
218 * <li>The specified deadline passes; or
231 * @param deadline the absolute time, in milliseconds from the Epoch,
235 public static void parkUntil(Object blocker, long deadline) {
238 unsafe.park(true, deadline);
325 * the specified deadline, unless the permit is available.
339 * <li>The specified deadline passes; or
350 * @param deadline the absolute time, in milliseconds from the Epoch,
353 public static void parkUntil(long deadline) {
354 unsafe.park(true, deadline);
    [all...]
  /external/chromium_org/cc/test/
begin_frame_args_test.cc 25 int64 deadline,
28 base::TimeTicks::FromInternalValue(deadline),
56 return (lhs.frame_time == rhs.frame_time) && (lhs.deadline == rhs.deadline) &&
67 << args.deadline.ToInternalValue() << ", "

Completed in 871 milliseconds

1 2 3 4 5 6 7 8 910