HomeSort by relevance Sort by last modified time
    Searched defs:timed_out (Results 1 - 25 of 30) sorted by null

1 2

  /art/runtime/
barrier.cc 75 bool timed_out = false; local
80 timed_out = condition_.TimedWait(self, timeout_ms, timeout_ns);
81 if (timed_out || count_ == 0) return timed_out;
90 return timed_out;
monitor.cc 781 bool timed_out = false; local
810 timed_out = self->GetWaitConditionVariable()->TimedWait(self, ms, ns);
989 bool timed_out; local
    [all...]
thread_list.cc 235 bool timed_out = barrier_.Increment(self, threads_running_checkpoint, kDumpWaitTimeout); local
236 if (timed_out) {
461 bool timed_out = barrier->Increment(self, barrier_count, kEmptyCheckpointPeriodicTimeoutMs); local
462 if (!timed_out) {
    [all...]
  /external/webrtc/webrtc/libjingle/xmpp/
pingtask_unittest.cc 38 PingTaskTest() : respond_to_pings(true), timed_out(false) {
56 timed_out = true;
62 bool timed_out; member in class:PingTaskTest
87 EXPECT_FALSE(timed_out);
99 EXPECT_FALSE(timed_out);
100 EXPECT_TRUE_WAIT(timed_out, ping_timeout_millis * 2);
  /system/core/libmemunreachable/
ScopedDisableMalloc.h 82 bool timed_out() { return timed_out_; } function in class:android::ScopedDisableMallocTimeout
  /art/runtime/native/
dalvik_system_VMStack.cc 60 bool timed_out; local
64 &timed_out);
74 } else if (timed_out) {
java_lang_Thread.cc 148 bool timed_out; local
153 &timed_out);
161 } else if (timed_out) {
org_apache_harmony_dalvik_ddmc_DdmVmInternal.cc 66 bool timed_out; local
76 &timed_out);
87 if (timed_out) {
  /external/python/cpython3/Python/
ceval_gil.h 220 int timed_out = 0; local
224 COND_TIMED_WAIT(gil_cond, gil_mutex, INTERVAL, timed_out);
227 if (timed_out &&
  /external/syslinux/core/include/
thread.h 39 bool timed_out; member in struct:thread_block
  /external/mesa3d/src/gallium/state_trackers/xa/
xa_context.c 384 boolean timed_out; local
386 timed_out = !screen->fence_finish(screen, NULL, fence->pipe_fence, timeout);
387 if (timed_out)
  /external/webrtc/webrtc/modules/remote_bitrate_estimator/test/
packet_sender.cc 390 int timed_out = TriggerTimeouts(); local
391 if (timed_out > 0) {
428 int timed_out = 0; local
432 ++timed_out;
437 return timed_out;
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/x86_64-w64-mingw32/32/bits/
error_constants.h 126 timed_out = ETIMEDOUT, member in class:errc
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/x86_64-w64-mingw32/bits/
error_constants.h 126 timed_out = ETIMEDOUT, member in class:errc
  /art/openjdkjvm/
OpenjdkJvm.cc 420 bool timed_out; local
427 &timed_out);
436 } else if (timed_out) {
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/
ParsedEvent.java 329 private boolean timed_out; field in class:ParsedEvent.Event_MONITOR_WAITED
339 this.timed_out = packet.getNextValueAsBoolean();
343 return timed_out;
  /external/fio/
client.h 95 client_timed_out_op *timed_out; member in struct:client_ops
  /external/libevent/test/
regress_thread.c 264 int timed_out; member in struct:alerted_record
284 rec->timed_out = 1;
345 n_timed_out = alerted[5].timed_out + alerted[6].timed_out;
352 if (alerted[i].timed_out) {
  /external/parameter-framework/asio-1.10.6/include/asio/
error.hpp 138 timed_out = ASIO_SOCKET_ERROR(ETIMEDOUT), enumerator in enum:asio::error::basic_errors
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/x86_64-linux/32/bits/
error_constants.h 162 timed_out = ETIMEDOUT, member in class:errc
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/x86_64-linux/bits/
error_constants.h 162 timed_out = ETIMEDOUT, member in class:errc
  /external/libusb/libusb/
io.c 1689 uint8_t timed_out; local
    [all...]
  /art/runtime/base/
mutex.cc 991 bool timed_out = false; local
    [all...]
  /external/oj-libjdwp/src/share/back/
util.h 263 jboolean timed_out; member in union:__anon30787::__anon30788::__anon30793
  /test/vts/runners/target/gtest/
gtest_main.cpp 595 bool timed_out; member in struct:ChildProcInfo
699 child_proc_list[i].timed_out = false;
715 child_proc_list[i].timed_out = true;
803 if (child_proc.timed_out) {
804 // The child process marked as timed_out has not exited, and we should kill
811 if (child_proc.timed_out) {
    [all...]

Completed in 1757 milliseconds

1 2