Searched refs:wait (Results 1 - 25 of 108) sorted by relevance

12345

/system/chre/platform/linux/include/chre/target_platform/
H A Dcondition_variable_impl.h30 inline void ConditionVariable::wait(Mutex& mutex) { function in class:chre::ConditionVariable
31 mConditionVariable.wait(mutex);
/system/nfc/halimpl/bcm2079x/adaptation/
H A DCondVar.h55 ** Function: wait
57 ** Description: Block the caller and wait for a condition.
62 void wait(Mutex& mutex);
66 ** Function: wait
68 ** Description: Block the caller and wait for a condition.
71 ** Returns: True if wait is successful; false if timeout occurs.
74 bool wait(Mutex& mutex, long millisec);
H A DSyncEvent.h54 ** Function: wait
56 ** Description: Block the thread and wait for the event to occur.
61 void wait() { mCondVar.wait(mMutex); } function in class:SyncEvent
65 ** Function: wait
67 ** Description: Block the thread and wait for the event to occur.
70 ** Returns: True if wait is successful; false if timeout occurs.
73 bool wait(long millisec) { function in class:SyncEvent
74 bool retVal = mCondVar.wait(mMutex, millisec);
H A DCondVar.cpp68 ** Function: wait
70 ** Description: Block the caller and wait for a condition.
75 void CondVar::wait(Mutex& mutex) { function in class:CondVar
78 ALOGE("CondVar::wait: fail wait; error=0x%X", res);
84 ** Function: wait
86 ** Description: Block the caller and wait for a condition.
89 ** Returns: True if wait is successful; false if timeout occurs.
92 bool CondVar::wait(Mutex& mutex, long millisec) { function in class:CondVar
97 ALOGE("CondVar::wait
[all...]
/system/chre/platform/include/chre/platform/
H A Dcondition_variable.h59 void wait(Mutex& mutex);
/system/extras/tests/bootloader/
H A Dhaltest.py31 self.device.wait()
48 self.device.wait()
55 self.device.wait()
57 self.device.wait()
70 self.device.wait()
77 self.device.wait()
79 self.device.wait()
92 self.device.wait()
96 self.device.wait()
102 self.device.wait()
[all...]
/system/chre/platform/slpi/include/chre/target_platform/
H A Dcondition_variable_impl.h36 inline void ConditionVariable::wait(Mutex& mutex) { function in class:chre::ConditionVariable
/system/extras/simpleperf/runtest/
H A Dfunction_fork.cpp2 #include <sys/wait.h>
/system/media/audio_utils/include/audio_utils/
H A Dfifo_index.h65 int wait(int op, uint32_t expected, const struct timespec *timeout);
140 * A reference to an audio_utils_fifo_index with cached load-acquire, and deferred wait.
168 // TODO This is an immediate wait, but we needed deferred wait
172 * and then made the decision to call wait() based on that value.
181 * \retval -EINVAL caller did not call get() prior to wait()
183 int wait(int op, const struct timespec *timeout);
/system/media/audio_utils/
H A Dfifo_index.cpp35 int audio_utils_fifo_index::wait(int op, uint32_t expected, const struct timespec *timeout) function in class:audio_utils_fifo_index
154 int RefIndexCachedLoadAcquireDeferredWait::wait(int op, const struct timespec *timeout) function in class:RefIndexCachedLoadAcquireDeferredWait
159 int err = mIndex.wait(op, mValue /*expected*/, timeout);
/system/chre/util/include/chre/util/
H A Dfixed_size_blocking_queue_impl.h43 mConditionVariable.wait(mMutex);
/system/core/init/
H A Dsignal_handler.cpp23 #include <sys/wait.h>
H A Dperfboot.py87 # The wait time used when the value of _CPU_COOL_DOWN_THRESHOLDS for
99 def wait(self): member in class:IntervalAdjuster
123 print ('Just wait %d seconds' %
173 device.wait()
184 device.wait()
193 device.wait()
213 device.wait()
245 device.wait()
359 device.wait()
360 interval_adjuster.wait()
[all...]
/system/extras/tests/kernel.config/
H A Daslr_test.h26 #include <sys/wait.h>
/system/netd/server/
H A Doem_iptables_hook.cpp20 #include <sys/wait.h>
/system/libhwbinder/vts/performance/
H A DBenchmark_binder.cpp25 #include <sys/wait.h>
106 retval = wait(&stat);
H A DBenchmark_throughput.cpp19 #include <sys/wait.h>
74 void wait() { function in class:Pipe
190 // Signal service started to master and wait to exit.
192 p.wait();
204 p.wait();
247 // Signal completion to master and wait.
249 p.wait();
251 // Send results to master and wait for go to exit.
253 p.wait();
289 v[i].wait();
[all...]
H A DBenchmark.cpp20 #include <sys/wait.h>
143 retval = wait(&stat);
H A DLatency.cpp28 #include <sys/wait.h>
111 // Both parent and child hold a object and each wait() on parent
137 void wait() { function in class:Pipe
246 // create a fifo thread to transact and wait it to finished
274 // wait for kill
275 p.wait();
311 // wait for kick-off
312 p.wait();
337 // wait for kill
338 p.wait();
[all...]
/system/core/libsync/tests/
H A Dsync_test.cpp171 int wait(int timeout = -1) { function in class:__anon1623::SyncFence
280 ASSERT_EQ(fence.wait(0), -1);
287 ASSERT_EQ(fence.wait(0), -1);
294 ASSERT_EQ(fence.wait(0), 0);
296 // Go even futher, and confirm wait still succeeds.
298 ASSERT_EQ(fence.wait(0), 0);
312 // Poll the fence, and wait till timeout.
393 // Spawn a thread to wait on a fence when the timeline is killed.
407 fenceSig.wait();
412 // wait fo
[all...]
/system/bt/bta/av/
H A Dbta_av_aact.cc349 if ((p_scb->wait & BTA_AV_WAIT_ROLE_SW_BITS) == 0) {
353 p_scb->wait |= BTA_AV_WAIT_CHECK_RC;
766 APPL_TRACE_DEBUG("%s: wait:x%x", __func__, p_scb->wait);
767 if (p_scb->wait & BTA_AV_WAIT_ROLE_SW_RES_START)
768 p_scb->wait |= BTA_AV_WAIT_ROLE_SW_RETRY;
771 p_scb->wait &=
777 p_scb->wait |= BTA_AV_WAIT_ROLE_SW_RES_OPEN;
792 p_scb->wait &= ~BTA_AV_WAIT_ROLE_SW_RETRY;
814 APPL_TRACE_DEBUG("%s: q_tag:%d, wait
[all...]
/system/core/include/utils/
H A DCondition.h41 * call wait(), then either re-wait() if things aren't quite what you want,
42 * or unlock the mutex and continue. All threads calling wait() must
67 status_t wait(Mutex& mutex);
115 inline status_t Condition::wait(Mutex& mutex) { function in class:android::Condition
/system/core/libutils/include/utils/
H A DCondition.h41 * call wait(), then either re-wait() if things aren't quite what you want,
42 * or unlock the mutex and continue. All threads calling wait() must
67 status_t wait(Mutex& mutex);
115 inline status_t Condition::wait(Mutex& mutex) { function in class:android::Condition
/system/core/logwrapper/
H A Dlogwrapper.c20 #include <sys/wait.h>
45 " fault address is set to the status of wait()\n"
/system/extras/ext4_utils/
H A Dsetup_fs.c5 #include <sys/wait.h>

Completed in 492 milliseconds

12345