HomeSort by relevance Sort by last modified time
    Searched defs:wait_for (Results 1 - 16 of 16) sorted by null

  /system/chre/platform/linux/include/chre/target_platform/
condition_variable_impl.h 34 inline bool ConditionVariable::wait_for(Mutex& mutex, Nanoseconds timeout) { function in class:chre::ConditionVariable
35 std::cv_status result = mConditionVariable.wait_for(
  /system/chre/platform/slpi/include/chre/target_platform/
condition_variable_impl.h 43 // Note: The wait_for function is designed to work for a single thread waiting
45 inline bool ConditionVariable::wait_for(Mutex& mutex, Nanoseconds timeout) { function in class:chre::ConditionVariable
  /external/autotest/client/cros/
webstore_test.py 175 def wait_for(self, xpath): member in class:webstore_test
258 self.wait_for(post_install_xpath)
  /frameworks/ml/nn/runtime/
Callbacks.h 78 * CallbackBase::wait_for blocks until notify has been called on the
79 * callback object or the time duration from the time the wait_for function
87 std::cv_status wait_for(const std::chrono::duration<Rep,Period>& timeout_duration);
92 * before any calls to wait* return. (Note that CallbackBase::wait_for can
126 * - CallbackBase::wait_for has been called and returned other than
156 * of wait_for timing out). The asynchronous call the callback object is
316 std::cv_status CallbackBase::wait_for(const std::chrono::duration<Rep,Period>& timeout_duration) { function in class:android::hardware::neuralnetworks::V1_0::implementation::CallbackBase
318 std::cv_status status = mCondition.wait_for(lock, timeout_duration, [this]{return mNotified;});
  /hardware/interfaces/neuralnetworks/1.0/vts/functional/
Callbacks.h 54 * CallbackBase::wait_for blocks until notify has been called on the
55 * callback object or the time duration from the time the wait_for function
63 std::cv_status wait_for(const std::chrono::duration<Rep,Period>& timeout_duration);
68 * before any calls to wait* return. (Note that CallbackBase::wait_for can
102 * - CallbackBase::wait_for has been called and returned other than
132 * of wait_for timing out). The asynchronous call the callback object is
292 std::cv_status CallbackBase::wait_for(const std::chrono::duration<Rep,Period>& timeout_duration) { function in class:android::hardware::neuralnetworks::V1_0::implementation::CallbackBase
294 std::cv_status status = mCondition.wait_for(lock, timeout_duration, [this]{return mNotified;});
  /external/python/cpython3/Lib/asyncio/
locks.py 341 def wait_for(self, predicate): member in class:Condition
tasks.py 5 'wait', 'wait_for', 'as_completed', 'sleep', 'async',
316 def wait_for(fut, timeout, *, loop=None): function
363 """Internal helper for wait() and wait_for().
  /external/tensorflow/tensorflow/core/platform/default/
mutex.h 148 std::cv_status wait_for(mutex_lock& lock, function in class:tensorflow::condition_variable
166 std::cv_status s = cv->wait_for(*mu, std::chrono::milliseconds(ms));
  /external/clang/tools/scan-build-py/tests/functional/exec/
main.c 86 void wait_for(pid_t child) { function
108 wait_for(child); \
245 wait_for(child);
263 wait_for(child);
  /external/python/cpython3/Lib/multiprocessing/
synchronize.py 311 def wait_for(self, predicate, timeout=None): member in class:Condition
managers.py 1004 def wait_for(self, predicate, timeout=None): member in class:ConditionProxy
    [all...]
  /external/devlib/devlib/utils/
android.py 628 def wait_for(self, regexp, timeout=30): member in class:LogcatMonitor
  /external/toybox/toys/pending/
fsck.c 250 static int wait_for(int for_all) function
323 if ((ret |= wait_for(1)) > 4) return ret; //destruction in filesys.
347 && (TT.nr_run >= TT.max_nr_run))) ret |= wait_for(0);
351 ret |= wait_for(1);
411 toys.exitval |= wait_for(0);
414 toys.exitval |= wait_for(1);
  /external/python/cpython3/Lib/
threading.py 311 def wait_for(self, predicate, timeout=None): member in class:Condition
647 if not self._cond.wait_for(lambda : self._state != 0, timeout):
    [all...]
  /external/fio/
thread_options.h 50 char *wait_for; member in struct:thread_options
324 uint8_t wait_for[FIO_TOP_STR_MAX]; member in struct:thread_options_pack
  /external/python/cpython3/Lib/test/test_asyncio/
test_tasks.py 388 def wait_for(fut): function in function:BaseTaskTests.test_task_repr_wait_for
392 task = self.new_task(self.loop, wait_for(fut))
395 '<Task .* wait_for=%s>' % re.escape(repr(fut)))
658 loop.run_until_complete(asyncio.wait_for(fut, 0.1, loop=loop))
672 res = loop.run_until_complete(asyncio.wait_for(coro(),
697 loop.run_until_complete(asyncio.wait_for(fut, 0.01))
715 task = asyncio.wait_for(fut, timeout=0.2, loop=loop)
    [all...]

Completed in 325 milliseconds