Home
last modified time | relevance | path

Searched refs:WaitFor (Results 1 – 14 of 14) sorted by relevance

/external/v8/src/base/platform/
Dsemaphore-unittest.cc81 ASSERT_FALSE(semaphore_->WaitFor(TimeDelta::FromMicroseconds(1))); in Run()
123 EXPECT_FALSE(semaphore.WaitFor(TimeDelta::FromMicroseconds(1))); in TEST()
127 TEST(Semaphore, WaitFor) { in TEST() argument
131 ASSERT_FALSE(semaphore.WaitFor(TimeDelta::FromMicroseconds(0))); in TEST()
132 ASSERT_FALSE(semaphore.WaitFor(TimeDelta::FromMicroseconds(100))); in TEST()
133 ASSERT_FALSE(semaphore.WaitFor(TimeDelta::FromMicroseconds(1000))); in TEST()
137 ASSERT_TRUE(semaphore.WaitFor(TimeDelta::FromMicroseconds(0))); in TEST()
139 ASSERT_TRUE(semaphore.WaitFor(TimeDelta::FromMicroseconds(100))); in TEST()
141 ASSERT_TRUE(semaphore.WaitFor(TimeDelta::FromMicroseconds(1000))); in TEST()
Dcondition-variable.cc71 bool ConditionVariable::WaitFor(Mutex* mutex, const TimeDelta& rel_time) { in WaitFor() function in v8::base::ConditionVariable
125 bool WaitFor(DWORD timeout_ms) {
273 while (!event->WaitFor(INFINITE))
285 bool ConditionVariable::WaitFor(Mutex* mutex, const TimeDelta& rel_time) {
299 result = event->WaitFor(INFINITE - 1);
305 result = event->WaitFor((msec < 0) ? 0 : static_cast<DWORD>(msec));
Dsemaphore.cc54 bool Semaphore::WaitFor(const TimeDelta& rel_time) { in WaitFor() function in v8::base::Semaphore
109 bool Semaphore::WaitFor(const TimeDelta& rel_time) {
178 bool Semaphore::WaitFor(const TimeDelta& rel_time) {
Dsemaphore.h50 bool WaitFor(const TimeDelta& rel_time) WARN_UNUSED_RESULT;
Dcondition-variable.h59 bool WaitFor(Mutex* mutex, const TimeDelta& rel_time) WARN_UNUSED_RESULT;
Dcondition-variable-unittest.cc22 EXPECT_FALSE(cv.WaitFor(&mutex, TimeDelta::FromMicroseconds(n))); in TEST()
25 EXPECT_FALSE(cv.WaitFor(&mutex, TimeDelta::FromMicroseconds(n))); in TEST()
/external/chromium-trace/trace-viewer/tracing/build/
Dtemporary_dev_server.py33 def WaitFor(condition, timeout): function
101 WaitFor(IsServerUp, 10)
/external/v8/src/heap/
Dsweeper-thread.cc66 bool value = end_sweeping_semaphore_.WaitFor(base::TimeDelta::FromSeconds(0)); in SweepingCompleted()
Dmark-compact.cc616 if (!pending_sweeper_jobs_semaphore_.WaitFor( in IsSweepingCompleted()
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
Dant.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/ ...
/external/owasp/sanitizer/tools/findbugs/lib/
Dant.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/ ...
/external/jarjar/lib/
Dapache-ant-1.9.4.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/ ...
/external/v8/test/cctest/
Dtest-debug.cc7488 CHECK(terminate_fired_semaphore.WaitFor(v8::base::TimeDelta::FromSeconds(2))); in DebugBreakTriggerTerminate()
Dtest-api.cc22287 bool success = test->sem2_.WaitFor(v8::base::TimeDelta::FromSeconds(2)); in OnInterrupt()