Searched defs:wait_for (Results 1 - 1 of 1) sorted by relevance

/hardware/interfaces/neuralnetworks/1.0/vts/functional/
H A DCallbacks.h66 * CallbackBase::wait_for blocks until notify has been called on the
67 * callback object or the time duration from the time the wait_for function
75 std::cv_status wait_for(const std::chrono::duration<Rep,Period>& timeout_duration);
80 * before any calls to wait* return. (Note that CallbackBase::wait_for can
114 * - CallbackBase::wait_for has been called and returned other than
144 * of wait_for timing out). The asynchronous call the callback object is
304 std::cv_status CallbackBase::wait_for(const std::chrono::duration<Rep,Period>& timeout_duration) { function in class:android::hardware::neuralnetworks::V1_0::implementation::CallbackBase
306 std::cv_status status = mCondition.wait_for(lock, timeout_duration, [this]{return mNotified;});

Completed in 143 milliseconds