HomeSort by relevance Sort by last modified time
    Searched refs:deadline (Results 101 - 125 of 356) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/autotest/site_utils/
run_suite_unittest.py 562 deadline = t.deadline
563 self.assertTrue(deadline is not None and
569 self.assertTrue(t.deadline >= min_deadline)
575 self.assertTrue(t.deadline is None and t.poll() == False)
577 self.assertTrue(t.deadline is None and t.poll() == False)
generate_test_report 51 def __init__(self, signals, deadline, url, person):
53 self.deadline = datetime.datetime.strptime(deadline, '%Y-%b-%d')
175 w.deadline > datetime.datetime.now()):
177 match.group(1), w.deadline.strftime('%Y-%b-%d'))
  /external/libmojo/mojo/android/system/
core_impl.cc 68 jlong deadline) {
96 return MojoWaitMany(handle_start, signals_start, nb_handles, deadline,
171 jlong deadline) {
180 return MojoWait(mojo_handle, signals, deadline, signals_state);
373 jlong deadline,
382 deadline,
  /prebuilts/go/darwin-x86/src/runtime/
lock_futex.go 171 deadline := nanotime() + ns
180 if now >= deadline {
183 ns = deadline - now
lock_sema.go 171 func notetsleep_internal(n *note, ns int64, gp *g, deadline int64) bool {
172 // gp and deadline are logically local variables, but they are written
194 deadline = nanotime() + ns
206 ns = deadline - nanotime()
210 // Deadline hasn't arrived. Keep sleeping.
213 // Deadline arrived. Still registered. Semaphore not acquired.
netpoll.go 61 rt timer // read deadline timer (set if rt.f != nil)
62 rd int64 // read deadline
64 wt timer // write deadline timer
65 wd int64 // write deadline
236 // If we set the new deadline in the past, unblock currently pending IO if any.
396 throw("netpolldeadlineimpl: inconsistent read deadline")
405 throw("netpolldeadlineimpl: inconsistent write deadline")
  /prebuilts/go/linux-x86/src/runtime/
lock_futex.go 171 deadline := nanotime() + ns
180 if now >= deadline {
183 ns = deadline - now
lock_sema.go 171 func notetsleep_internal(n *note, ns int64, gp *g, deadline int64) bool {
172 // gp and deadline are logically local variables, but they are written
194 deadline = nanotime() + ns
206 ns = deadline - nanotime()
210 // Deadline hasn't arrived. Keep sleeping.
213 // Deadline arrived. Still registered. Semaphore not acquired.
netpoll.go 61 rt timer // read deadline timer (set if rt.f != nil)
62 rd int64 // read deadline
64 wt timer // write deadline timer
65 wd int64 // write deadline
236 // If we set the new deadline in the past, unblock currently pending IO if any.
396 throw("netpolldeadlineimpl: inconsistent read deadline")
405 throw("netpolldeadlineimpl: inconsistent write deadline")
  /prebuilts/tools/common/m2/repository/io/grpc/grpc-context/1.0.1/
grpc-context-1.0.1.jar 
  /prebuilts/tools/common/m2/repository/io/grpc/grpc-context/1.0.3/
grpc-context-1.0.3.jar 
  /external/libmojo/mojo/android/javatests/src/org/chromium/mojo/
HandleMock.java 41 public WaitResult wait(Core.HandleSignals signals, long deadline) {
  /external/libmojo/mojo/edk/js/
core.cc 41 MojoDeadline deadline) {
46 MojoResult result = mojo::Wait(handle, signals, deadline, &signals_state);
66 MojoDeadline deadline) {
72 mojo::WaitMany(handles, signals, deadline, &signals_states);
  /external/libmojo/mojo/public/java/system/src/org/chromium/mojo/system/
InvalidHandle.java 44 public WaitResult wait(HandleSignals signals, long deadline) {
  /prebuilts/go/darwin-x86/src/net/
fd_poll_runtime.go 128 // If the user has a deadline in the future, but the delay calculation
129 // overflows, then set the deadline to the maximum possible value.
  /prebuilts/go/linux-x86/src/net/
fd_poll_runtime.go 128 // If the user has a deadline in the future, but the delay calculation
129 // overflows, then set the deadline to the maximum possible value.
  /frameworks/base/core/java/com/android/internal/widget/
LockPatternUtils.java 1233 final long deadline = SystemClock.elapsedRealtime() + timeoutMs; local
1250 long deadline = getLong(LOCKOUT_ATTEMPT_DEADLINE, 0L, userId); local
    [all...]
  /external/autotest/server/hosts/
remote.py 195 if utils.ping(self.hostname, tries=1, deadline=1) == 0:
203 if utils.ping(self.hostname, tries=1, deadline=1) != 0:
  /external/iputils/
ping_common.c 28 int deadline = 0; /* time to die */ variable
306 deadline = atoi(optarg);
307 if (deadline < 0) {
477 if (exiting || (npackets && ntransmitted >= npackets && !deadline))
706 if (deadline) {
711 it.it_value.tv_sec = deadline;
745 if (deadline && nerrors)
1061 exit(!nreceived || (deadline && nreceived < npackets));
ping_common.h 146 extern int deadline; /* time to die */
227 if (npackets && ntransmitted >= npackets && !deadline)
  /external/libmojo/mojo/public/cpp/bindings/lib/
connector.cc 95 bool Connector::WaitForIncomingMessage(MojoDeadline deadline) {
104 Wait(message_pipe_.get(), MOJO_HANDLE_SIGNAL_READABLE, deadline, nullptr);
  /external/libvpx/libvpx/vpx/src/
vpx_decoder.c 106 long deadline) {
117 deadline);
  /external/v8/src/heap/
memory-reducer.cc 77 double deadline = heap()->MonotonicallyIncreasingTimeInMs() + local
80 deadline, IncrementalMarking::NO_GC_VIA_STACK_GUARD,
  /external/v8/src/libplatform/
default-platform.cc 148 // Move delayed tasks that hit their deadline to the main queue.
201 double deadline = MonotonicallyIncreasingTime() + delay_in_seconds; local
202 main_thread_delayed_queue_[isolate].push(std::make_pair(deadline, task));
  /hardware/interfaces/soundtrigger/2.0/vts/functional/
VtsHalSoundtriggerV2_0TargetTest.cpp 71 auto deadline = std::chrono::system_clock::now() + local
74 if (mCv.wait_until(lock, deadline) == std::cv_status::timeout) {

Completed in 540 milliseconds

1 2 3 45 6 7 8 91011>>