HomeSort by relevance Sort by last modified time
    Searched refs:wait (Results 151 - 175 of 1438) sorted by null

1 2 3 4 5 67 8 91011>>

  /frameworks/base/libs/hwui/thread/
Barrier.h 41 void wait() const { function in class:android::uirenderer::Barrier
44 mCondition.wait(mLock);
Signal.h 38 void wait() { function in class:android::uirenderer::Signal
41 mCondition.wait(mLock);
  /frameworks/native/services/surfaceflinger/
Barrier.h 40 void wait() const { function in class:android::Barrier
43 cv.wait(lock);
  /ndk/sources/cxx-stl/llvm-libc++/test/thread/thread.condition/thread.condition.condvar/
wait.pass.cpp 14 // void wait(unique_lock<mutex>& lock);
34 cv.wait(lk);
44 cv.wait(lk);
  /ndk/sources/cxx-stl/llvm-libc++/test/thread/thread.condition/thread.condition.condvarany/
wait.pass.cpp 15 // void wait(Lock& lock);
39 cv.wait(lk);
49 cv.wait(lk);
  /cts/tests/src/android/content/cts/
HighPriorityBroadcastReceiver.java 30 wait(); method
33 throw new RuntimeException("Got interrupted during wait()", e);
  /development/host/windows/usb/api/
adb_legacy_io_completion.cpp 41 bool wait) {
55 wait) ? true :
59 // that GetOverlappedResult with wait set to true returns "prematurely",
64 if (wait && ret && (0 == transfer) && (0 != expected_transfer_size_) &&
71 wait) ? true :
  /development/host/windows/usb/winusb/
adb_winusb_io_completion.cpp 49 bool wait) {
64 wait ? TRUE : FALSE) ? true : false;
67 // that GetOverlappedResult with wait set to true returns "prematurely",
72 if (wait && ret && (0 == transfer) && (0 != expected_transfer_size_) &&
80 wait ? TRUE : FALSE) ? true : false;
adb_winusb_io_completion.h 98 @param[in] wait If this parameter is true, the method does not return
109 bool wait);
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/misc/
Barrier.java 30 /**A very simple barrier wait. Once a thread has requested a
31 * wait on the barrier with waitForRelease, it cannot fool the
33 * the thread is blocked on the wait().
55 wait(); method
  /external/kernel-headers/original/linux/
smp.h 54 int smp_call_function(void(*func)(void *info), void *info, int retry, int wait);
59 int on_each_cpu(void (*func) (void *info), void *info, int retry, int wait);
88 #define smp_call_function(func,info,retry,wait) (up_smp_call_function())
89 #define on_each_cpu(func,info,retry,wait) \
  /external/openssh/openbsd-compat/
bsd-nextstep.c 29 #include <sys/wait.h>
35 union wait statusp;
38 #undef wait /* Use NeXT's wait() function */ macro
39 wait_pid = wait(&statusp);
  /external/skia/include/utils/
SkCondVar.h 44 void wait();
  /external/valgrind/main/none/tests/
fork.c 4 #include <sys/wait.h>
  /external/webkit/Source/WebKit2/Platform/CoreIPC/
BinarySemaphore.cpp 50 bool BinarySemaphore::wait(double absoluteTime) function in class:CoreIPC::BinarySemaphore
BinarySemaphore.h 42 bool wait(double absoluteTime);
  /frameworks/base/core/java/android/os/
IPowerManager.aidl 40 void reboot(boolean confirm, String reason, boolean wait);
41 void shutdown(boolean confirm, boolean wait);
  /system/extras/tests/bionic/libc/other/
test_system.c 3 #include <sys/wait.h>
  /external/valgrind/main/drd/tests/
monitor_example.cpp 116 void wait() function in class:Monitor
195 void wait(const int state) function in class:StateVariable
199 m_monitor.wait();
213 s_sv.wait(1);
215 s_sv.wait(3);
225 s_sv.wait(2);
227 s_sv.wait(4);
  /external/junit/src/junit/textui/
TestRunner.java 16 * java junit.textui.TestRunner [-wait] TestCaseClass
24 * <p> When the wait command line argument is given TestRunner
112 public TestResult doRun(Test suite, boolean wait) {
121 pause(wait);
125 protected void pause(boolean wait) {
126 if (!wait) return;
155 boolean wait= false;
158 if (args[i].equals("-wait"))
159 wait= true;
174 throw new Exception("Usage: TestRunner [-wait] testCaseName, where name is the name of the TestCase class")
    [all...]
  /libcore/luni/src/test/java/libcore/java/lang/
OldObjectTest.java 101 obj.wait();
141 obj1.wait();// Wait for ever.
144 obj1.wait(5000L);
147 obj1.wait(10000L, 999999);
167 obj.wait(5000L, 1);
194 o.wait(-1, 0);
200 o.wait(0, -1);
206 o.wait(-1, -1);
213 o.wait(Integer.MAX_VALUE + 1, 0)
    [all...]
OldAndroidMonitorTest.java 30 wait(1);
31 wait(10);
34 wait(0, 1);
35 wait(0, 999999);
36 wait(1, 1);
37 wait(1, 999999);
40 throw new RuntimeException("good Object.wait() interrupted",
44 "Object.wait() with good arguments", ex);
52 wait(-1);
55 throw new RuntimeException("bad Object.wait() interrupted", ex)
    [all...]
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/
ObjectTest.java 97 obj1.wait();// Wait for ever.
125 // Wait up to readyWaitSeconds for all threads to be waiting on
128 obj1.wait(1000, 0);
142 obj1.wait(200, 0);
167 obj1.wait();// Wait for ever.
196 // Wait up to readyWaitSeconds for all threads to be waiting on
199 obj1.wait(1000, 0);
213 obj1.wait(5000, 0)
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/test/thread/futures/futures.shared_future/
wait.pass.cpp 14 // void wait() const;
50 f.wait();
53 f.wait();
64 f.wait();
67 f.wait();
78 f.wait();
81 f.wait();
  /ndk/sources/cxx-stl/llvm-libc++/test/thread/futures/futures.unique_future/
wait.pass.cpp 14 // void wait() const;
50 f.wait();
53 f.wait();
64 f.wait();
67 f.wait();
78 f.wait();
81 f.wait();

Completed in 728 milliseconds

1 2 3 4 5 67 8 91011>>