Lines Matching full:notification

27  * Indicates that no notification will be provided.
37 * Select notification through @ref k_poll signal
44 * Select notification through a user-provided callback.
75 * @defgroup sys_notify_apis Asynchronous Notification APIs
101 * @brief State associated with notification for an asynchronous
147 /* Generic callback function for callback notification. */
190 * notification configuration is consistent, and clears the result.
209 * @param notify pointer to the notification state structure.
215 * @return If the notification is to be done by callback this returns
218 * expected by the callback. If notification is by spin-wait or
219 * signal, the notification has been completed by the point this
253 * @brief Initialize a notify object for spin-wait notification.
256 * notification, and instead must periodically check for completion
262 * @param notify pointer to the notification configuration object.
274 * @brief Initialize a notify object for (k_poll) signal notification.
286 * @param notify pointer to the notification configuration object.
288 * @param sigp pointer to the signal to use for notification. The
307 * @brief Initialize a notify object for callback notification.
317 * @param notify pointer to the notification configuration object.
319 * @param handler a function pointer to use for notification.
336 * @brief Detect whether a particular notification uses a callback.
341 * to reject callback notification requests when the service doesn't
344 * @return true if and only if a callback is to be used for notification.