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

1 2 3 4 5 6 7 8 91011>>

  /bionic/libc/bionic/
wait.cpp 29 #include <sys/wait.h>
34 pid_t wait(int* status) { function
  /external/openssh/openbsd-compat/
bsd-nextstep.h 39 /* Swap out NeXT's BSD wait() for a more POSIX complient one */
41 #define wait(a) posix_wait(a) macro
  /external/grpc-grpc/src/ruby/lib/grpc/
notifier.rb 29 def wait method in class:GRPC.Notifier
31 @cvar.wait(@mutex) until notified?
  /dalvik/dx/tests/089-dex-define-object/java/lang/
Object.class 
  /external/llvm/lib/Support/
ThreadPool.cpp 28 // Create ThreadCount threads that will loop forever, wait on QueueCondition
37 // Wait for tasks to be pushed in the queue
38 QueueCondition.wait(LockGuard,
46 // in order for wait() to properly detect that even if the queue is
63 // Adjust `ActiveThreads`, in case someone waits on ThreadPool::wait()
68 // Notify task completion, in case someone waits on ThreadPool::wait()
75 void ThreadPool::wait() { function in class:ThreadPool
76 // Wait for all threads to complete and the queue to be empty
81 CompletionCondition.wait(LockGuard,
126 void ThreadPool::wait() {
    [all...]
  /external/skia/src/core/
SkTaskGroup.cpp 36 void SkTaskGroup::wait() { function in class:SkTaskGroup
  /external/skqp/src/core/
SkTaskGroup.cpp 36 void SkTaskGroup::wait() { function in class:SkTaskGroup
  /external/swiftshader/src/Vulkan/
VkSemaphore.hpp 35 void wait() function in class:vk::Semaphore
40 void wait(const VkPipelineStageFlags& flag) function in class:vk::Semaphore
42 // VkPipelineStageFlags is the pipeline stage at which the semaphore wait will occur
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Support/
ThreadPool.cpp 29 // Create ThreadCount threads that will loop forever, wait on QueueCondition
38 // Wait for tasks to be pushed in the queue
39 QueueCondition.wait(LockGuard,
47 // in order for wait() to properly detect that even if the queue is
60 // Adjust `ActiveThreads`, in case someone waits on ThreadPool::wait()
65 // Notify task completion, in case someone waits on ThreadPool::wait()
72 void ThreadPool::wait() { function in class:ThreadPool
73 // Wait for all threads to complete and the queue to be empty
78 CompletionCondition.wait(LockGuard,
123 void ThreadPool::wait() {
    [all...]
  /cts/tests/tests/content/src/android/content/cts/
HighPriorityBroadcastReceiver.java 29 wait(); method
31 throw new RuntimeException("Got interrupted during wait()", e);
  /device/linaro/hikey/hifi/xaf/hifi-dpf/include/sys/xt-shmem/
xf-runtime.h 54 u32 wait; member in struct:xf_ipc_handle
  /external/antlr/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/grpc-grpc/src/php/lib/Grpc/
ClientStreamingCall.php 43 * wait is called.
61 * Wait for the server to respond with data and a status.
65 public function wait() function
UnaryCall.php 51 * Wait for the server to respond with data and a status.
55 public function wait() function
  /external/skqp/src/gpu/vk/
GrVkSecondaryCBDrawContext.cpp 64 bool GrVkSecondaryCBDrawContext::wait(int numSemaphores, function in class:GrVkSecondaryCBDrawContext
66 return fDevice->wait(numSemaphores, waitSemaphores);
  /external/swiftshader/src/OpenGL/libEGL/
Sync.hpp 42 void wait() { context->finish(); signal(); } function in class:egl::FenceSync
  /art/openjdkjvmti/
ti_object.cc 90 std::vector<jthread> wait; local
97 // This gets the list of threads trying to lock or wait on the monitor.
106 wait.push_back(jni->AddLocalReference<jthread>(thd->GetPeerFromOtherThread()));
113 wait.push_back(jni->AddLocalReference<jthread>(thd->GetPeerFromOtherThread()));
118 usage->waiter_count = wait.size();
121 reinterpret_cast<const unsigned char*>(wait.data()),
122 wait.size() * sizeof(jthread),
  /art/test/626-const-class-linking/src/
RacyLoader.java 67 lock.wait();
  /cts/suite/audio_quality/lib/src/
Semaphore.cpp 37 bool Semaphore::wait() function in class:Semaphore
  /dalvik/dx/tests/089-dex-define-object/
Object.java 41 public final void wait() { method in class:Object
42 wait(0, 0);
45 public final void wait(long time) { method in class:Object
46 wait(time, 0); method
49 public final native void wait(long time, int frac); method in class:Object
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
popen2.py 79 # Child is still running, keep us alive until we can wait on it.
105 def wait(self): member in class:Popen3
106 """Wait for and return the exit status of the child process."""
  /device/linaro/bootloader/edk2/StdLib/LibC/Uefi/
StubFunctions.c 70 wait(int *stat_loc) { function
  /device/linaro/poplar/wifi/wifi_hal/
sync.h 62 int wait() { function in class:Condition
  /external/autotest/server/cros/
stress.py 39 Optionally takes a wait condition before the stressor loop. Returns
42 @param start_condition: the new thread will wait until this optional
44 @param start_timeout_secs: how long to wait for |start_condition| to
45 become True, or None to wait forever.
54 Wait for |_start_condition|, and then start the stressor loop.
147 @param start_condition: the new thread will wait to until this optional
149 @param start_timeout_secs: how long to wait for |start_condition| to
150 become True, or None to wait forever.
161 @param timeout: maximum time to wait for a single run of the stressor to
174 calling thread can use wait() to block until the loop completes. If th
202 def wait(self, timeout=None): member in class:CountedStressor
    [all...]
  /external/autotest/server/
subcommand.py 239 def wait(self): member in class:subcommand
251 return self.wait()
253 _, result = retry.timeout(self.wait, timeout_sec=timeout)
261 result = self.wait()

Completed in 2744 milliseconds

1 2 3 4 5 6 7 8 91011>>