Lines Matching full:notification
137 zassert_ok(mq_notify(mqd, ¬), "Unable to set notification."); in ZTEST()
141 zassert_true(notification_executed, "Notification not triggered."); in ZTEST()
153 "Notification function should be executed from different thread."); in notify_function_thread()
186 zassert_ok(mq_notify(mqd, ¬), "Unable to set notification."); in ZTEST()
192 zassert_true(notification_executed, "Notification not triggered."); in ZTEST()
220 zassert_ok(mq_notify(mqd, ¬), "Unable to set notification."); in ZTEST()
222 zassert_false(notification_executed, "Notification shouldn't be processed."); in ZTEST()
232 zassert_true(notification_executed, "Notification not triggered."); in ZTEST()
267 "Unexpected error while asigning notification to the queue."); in ZTEST()
270 "Can't assign notification when there is another assigned."); in ZTEST()
273 zassert_ok(mq_notify(mqd, NULL), "Unable to remove notification from the message queue."); in ZTEST()