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

1 2 3 4 5

  /external/chromium_org/v8/tools/testrunner/objects/
output.py 35 def __init__(self, exit_code, timed_out, stdout, stderr):
37 self.timed_out = timed_out
46 if self.timed_out:
52 return self.timed_out
55 return [self.exit_code, self.timed_out, self.stdout, self.stderr]
  /external/lldb/source/Host/common/
Condition.cpp 81 Condition::Wait (Mutex &mutex, const TimeValue *abstime, bool *timed_out)
95 if (timed_out != NULL)
98 *timed_out = true;
100 *timed_out = false;
  /external/chromium_org/third_party/libjingle/source/talk/xmpp/
pingtask_unittest.cc 55 PingTaskTest() : respond_to_pings(true), timed_out(false) {
73 timed_out = true;
79 bool timed_out; member in class:PingTaskTest
104 EXPECT_FALSE(timed_out);
116 EXPECT_FALSE(timed_out);
117 EXPECT_TRUE_WAIT(timed_out, ping_timeout_millis * 2);
  /external/lldb/include/lldb/Host/
Condition.h 94 /// @param[out] timed_out
102 Wait (Mutex &mutex, const TimeValue *abstime = NULL, bool *timed_out = NULL);
Predicate.h 311 /// @param[out] timed_out
320 WaitForValueEqualTo (T value, const TimeValue *abstime = NULL, bool *timed_out = NULL)
333 if (timed_out)
334 *timed_out = false;
338 err = m_condition.Wait (m_mutex, abstime, timed_out);
371 /// @param[out] timed_out
380 WaitForValueEqualToAndSetValueTo (T wait_value, T new_value, const TimeValue *abstime = NULL, bool *timed_out = NULL)
393 if (timed_out)
394 *timed_out = false;
398 err = m_condition.Wait (m_mutex, abstime, timed_out);
    [all...]
  /external/chromium_org/v8/tools/testrunner/local/
commands.py 89 timed_out = False
99 timed_out = True
106 return (exit_code, timed_out)
135 (exit_code, timed_out) = RunProcess(
151 return output.Output(exit_code, timed_out, out, errors)
  /external/chromium_org/base/win/
object_watcher.h 83 static void CALLBACK DoneWaiting(void* param, BOOLEAN timed_out);
object_watcher.cc 85 void CALLBACK ObjectWatcher::DoneWaiting(void* param, BOOLEAN timed_out) {
86 DCHECK(!timed_out);
  /external/chromium_org/chrome/browser/chromeos/first_run/
drive_first_run_browsertest.cc 72 bool timed_out() const { return timed_out_; } function in class:chromeos::DriveFirstRunTest
178 EXPECT_FALSE(timed_out());
188 EXPECT_TRUE(timed_out());
  /art/runtime/native/
dalvik_system_VMStack.cc 38 bool timed_out; local
43 thread = thread_list->SuspendThreadByPeer(peer, true, false, &timed_out);
53 if (timed_out) {
org_apache_harmony_dalvik_ddmc_DdmVmInternal.cc 56 bool timed_out; local
68 thread = thread_list->SuspendThreadByThreadId(thin_lock_id, false, &timed_out);
79 if (timed_out) {
java_lang_Thread.cc 132 bool timed_out; local
137 thread = thread_list->SuspendThreadByPeer(peer, true, false, &timed_out);
145 } else if (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/runtime/
thread_list.h 71 bool* timed_out)
81 Thread* SuspendThreadByThreadId(uint32_t thread_id, bool debug_suspension, bool* timed_out)
  /external/chromium_org/content/renderer/
resource_fetcher_browsertest.cc 68 bool timed_out() const { return timed_out_; } function in class:content::FetcherDelegate
205 EXPECT_FALSE(delegate->timed_out());
227 EXPECT_FALSE(delegate->timed_out());
244 EXPECT_FALSE(delegate->timed_out());
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/
server_process_mock.py 32 self.timed_out = False
driver.py 167 timed_out = self._server_process.timed_out
179 if stop_when_done or crashed or timed_out or leaked:
207 timeout=timed_out, error=self.error_from_test,
309 while not server_process.timed_out and not server_process.has_crashed() and not text in line.rstrip():
313 if server_process.timed_out or server_process.has_crashed():
472 if self._server_process.timed_out or self.has_crashed():
  /external/netperf/
nettest_sctp.c 396 int timed_out;
470 timed_out = 0;
734 timed_out = 1;
742 if (timed_out)
391 int timed_out; local
1597 int timed_out = 0; local
2617 int timed_out = 0; local
3276 int timed_out = 0; local
3670 int timed_out = 0; local
4331 int timed_out = 0; local
    [all...]
nettest_bsd.c 4965 int timed_out = 0; local
7557 int timed_out = 0; local
8009 int timed_out = 0; local
8657 int timed_out = 0; local
9089 int timed_out = 0; local
9697 int timed_out = 0; local
10158 int timed_out = 0; local
10766 int timed_out = 0; local
11191 int timed_out = 0; local
11737 int timed_out = 0; local
    [all...]
  /external/chromium_org/net/server/
http_server_unittest.cc 50 void SetTimedOutAndQuitLoop(const base::WeakPtr<bool> timed_out,
52 if (timed_out) {
53 *timed_out = true;
59 bool timed_out = false; local
60 base::WeakPtrFactory<bool> timed_out_weak_factory(&timed_out);
68 return !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 89 client_timed_out_op *timed_out; member in struct:client_ops
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/x86_64-linux/include/c++/4.6/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.11-4.6/x86_64-linux/include/c++/4.6/x86_64-linux/bits/
error_constants.h 162 timed_out = ETIMEDOUT, member in class:errc

Completed in 1893 milliseconds

1 2 3 4 5