HomeSort by relevance Sort by last modified time
    Searched defs:wait (Results 1 - 25 of 833) 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
  /prebuilts/go/darwin-x86/doc/articles/wiki/
get.go 22 wait = flag.Duration("wait_for_port", 0, "if non-zero, the amount of time to wait for the address to become available")
42 loopUntil := time.Now().Add(*wait)
50 if err == nil || *wait == 0 || time.Now().After(loopUntil) {
21 wait = flag.Duration("wait_for_port", 0, "if non-zero, the amount of time to wait for the address to become available") var
  /prebuilts/go/linux-x86/doc/articles/wiki/
get.go 22 wait = flag.Duration("wait_for_port", 0, "if non-zero, the amount of time to wait for the address to become available")
42 loopUntil := time.Now().Add(*wait)
50 if err == nil || *wait == 0 || time.Now().After(loopUntil) {
21 wait = flag.Duration("wait_for_port", 0, "if non-zero, the amount of time to wait for the address to become available") var
  /hardware/interfaces/radio/config/1.0/vts/functional/
radio_config_hidl_hal_test.cpp 52 * Wait till the response message is notified or till TIMEOUT_PERIOD.
54 std::cv_status RadioConfigHidlTest::wait() { function in class:RadioConfigHidlTest
  /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
  /hardware/interfaces/radio/1.0/vts/functional/
radio_hidl_hal_test.cpp 57 std::cv_status RadioHidlTest::wait(int sec) { function in class:RadioHidlTest
75 EXPECT_EQ(std::cv_status::no_timeout, wait());
sap_hidl_hal_test.cpp 42 std::cv_status SapHidlTest::wait() { function in class:SapHidlTest
  /hardware/interfaces/radio/1.1/vts/functional/
radio_hidl_hal_test.cpp 62 std::cv_status RadioHidlTest_v1_1::wait(int sec) { function in class:RadioHidlTest_v1_1
80 EXPECT_EQ(std::cv_status::no_timeout, wait());
  /hardware/interfaces/radio/1.2/vts/functional/
radio_hidl_hal_test.cpp 66 * Wait till the response message is notified or till TIMEOUT_PERIOD.
68 std::cv_status RadioHidlTest_v1_2::wait() { function in class:RadioHidlTest_v1_2
86 EXPECT_EQ(std::cv_status::no_timeout, wait());
  /cts/tests/tests/content/src/android/content/cts/
HighPriorityBroadcastReceiver.java 29 wait(); method
31 throw new RuntimeException("Got interrupted during wait()", e);
  /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/python/cpython3/Lib/multiprocessing/
popen_fork.py 44 def wait(self, timeout=None): member in class:Popen
47 from multiprocessing.connection import wait
48 if not wait([self.sentinel], timeout):
50 # This shouldn't block if wait() returned successfully.
61 if self.wait(timeout=0.1) is None:
  /external/swiftshader/src/OpenGL/libEGL/
Sync.hpp 42 void wait() { context->finish(); signal(); } function in class:egl::FenceSync
  /frameworks/native/services/sensorservice/
SensorDeviceUtils.cpp 58 bool HidlServiceRegistrationWaiter::wait() { function in class:android::SensorDeviceUtils::HidlServiceRegistrationWaiter
63 ALOGW("Cannot register service notification, use default wait(%d ms)", DEFAULT_WAIT_MS);
  /frameworks/rs/
rsSignal.cpp 69 void Signal::wait() { function in class:android::renderscript::Signal
72 ALOGE("Signal::wait: error locking for condition: %s", strerror(status));
83 ALOGE("Signal::wait: error waiting for condition: %s", strerror(status));
88 ALOGE("Signal::wait: error unlocking for condition: %s", strerror(status));
  /prebuilts/go/darwin-x86/src/os/
exec_unix.go 16 func (p *Process) wait() (ps *ProcessState, err error) { func
30 // Acquire a write lock on sigMu to wait for any
40 return nil, NewSyscallError("wait", e)
  /prebuilts/go/linux-x86/src/os/
exec_unix.go 16 func (p *Process) wait() (ps *ProcessState, err error) { func
30 // Acquire a write lock on sigMu to wait for any
40 return nil, NewSyscallError("wait", e)
  /system/chre/platform/linux/include/chre/target_platform/
condition_variable_impl.h 30 inline void ConditionVariable::wait(Mutex& mutex) { function in class:chre::ConditionVariable
31 mConditionVariable.wait(mutex);
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/crx/
no_op_insn.s 23 .global wait
24 wait: label
25 wait label
  /frameworks/base/core/tests/coretests/src/android/os/
HandlerThreadTest.java 57 // need to block here to wait for our onLooperPrepared() to complete
62 wait(); method
90 // wait until we have the lock before sending the message.
93 // wait for the message to be handled
94 h1.wait();
  /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();

Completed in 1246 milliseconds

1 2 3 4 5 6 7 8 91011>>