Lines Matching refs:notify

52  * must immediately call "notify". If the asynchronous task has failed to launch,
54 * "notify". This "notify" call awakens any client threads waiting on the
72 * CallbackBase::wait blocks until notify has been called on the callback
78 * CallbackBase::wait_for blocks until notify has been called on the
91 * bound function will be executed when CallbackBase::notify is called,
93 * return std::cv_status::timeout before CallbackBase::notify is called for
101 * CallbackBase::notify is called.
104 * CallbackBase::notify is called. Must have a target --
130 * exception of CallbackBase::notify, which it must call when the thread has
153 * CallbackBase::notify enables all prior and future wait* calls on the
154 * callback object to proceed. The call to CallbackBase::notify happens
158 * to the caller of wait* happens before the call to CallbackBase::notify.
160 * CallbackBase::notify must be called exactly once on a given callback
163 void notify();
183 * until the asynchronous task has called notify. For more information on the
187 * CallbackBase, and implements the HIDL notify call from
197 * IPreparedModelCallback::notify marks the callback object with the return
199 * model, and calls CallbackBase::notify, enabling all prior and future
204 * IPreparedModelCallback::notify must be called exactly once on a given
216 Return<void> notify(ErrorStatus status, const sp<IPreparedModel>& preparedModel) override;
256 * calling thread will block until the asynchronous task has called notify. For
261 * CallbackBase, and implements the HIDL notify call from
271 * IExecutionCallback::notify marks the callback object with the return
277 * IExecutionCallback::notify must be called exactly once on a given
289 Return<void> notify(ErrorStatus status) override;