Lines Matching refs:_ZBUS_ASSERT

152 		_ZBUS_ASSERT(false, "Unreachable");  in _zbus_notify_observer()
174 _ZBUS_ASSERT(buf != NULL, "net_buf zbus_msg_subscribers_pool is " in _zbus_vded_exec()
191 _ZBUS_ASSERT(observation != NULL, "observation must be not NULL"); in _zbus_vded_exec()
285 _ZBUS_ASSERT(!k_is_in_isr(), "cannot attach to an ISR"); in zbus_obs_attach_to_thread()
286 _ZBUS_ASSERT(obs != NULL, "obs is required"); in zbus_obs_attach_to_thread()
303 _ZBUS_ASSERT(!k_is_in_isr(), "cannot detach from an ISR"); in zbus_obs_detach_from_thread()
304 _ZBUS_ASSERT(obs != NULL, "obs is required"); in zbus_obs_detach_from_thread()
381 _ZBUS_ASSERT(chan != NULL, "chan is required"); in zbus_chan_pub()
382 _ZBUS_ASSERT(msg != NULL, "msg is required"); in zbus_chan_pub()
417 _ZBUS_ASSERT(chan != NULL, "chan is required"); in zbus_chan_read()
418 _ZBUS_ASSERT(msg != NULL, "msg is required"); in zbus_chan_read()
440 _ZBUS_ASSERT(chan != NULL, "chan is required"); in zbus_chan_notify()
464 _ZBUS_ASSERT(chan != NULL, "chan is required"); in zbus_chan_claim()
481 _ZBUS_ASSERT(chan != NULL, "chan is required"); in zbus_chan_finish()
491 _ZBUS_ASSERT(!k_is_in_isr(), "zbus_sub_wait cannot be used inside ISRs"); in zbus_sub_wait()
492 _ZBUS_ASSERT(sub != NULL, "sub is required"); in zbus_sub_wait()
493 _ZBUS_ASSERT(sub->type == ZBUS_OBSERVER_SUBSCRIBER_TYPE, "sub must be a SUBSCRIBER"); in zbus_sub_wait()
494 _ZBUS_ASSERT(sub->queue != NULL, "sub queue is required"); in zbus_sub_wait()
495 _ZBUS_ASSERT(chan != NULL, "chan is required"); in zbus_sub_wait()
505 _ZBUS_ASSERT(!k_is_in_isr(), "zbus_sub_wait_msg cannot be used inside ISRs"); in zbus_sub_wait_msg()
506 _ZBUS_ASSERT(sub != NULL, "sub is required"); in zbus_sub_wait_msg()
507 _ZBUS_ASSERT(sub->type == ZBUS_OBSERVER_MSG_SUBSCRIBER_TYPE, in zbus_sub_wait_msg()
509 _ZBUS_ASSERT(sub->message_fifo != NULL, "sub message_fifo is required"); in zbus_sub_wait_msg()
510 _ZBUS_ASSERT(chan != NULL, "chan is required"); in zbus_sub_wait_msg()
511 _ZBUS_ASSERT(msg != NULL, "msg is required"); in zbus_sub_wait_msg()
533 _ZBUS_ASSERT(obs != NULL, "obs is required"); in zbus_obs_set_chan_notification_mask()
534 _ZBUS_ASSERT(chan != NULL, "chan is required"); in zbus_obs_set_chan_notification_mask()
570 _ZBUS_ASSERT(obs != NULL, "obs is required"); in zbus_obs_is_chan_notification_masked()
571 _ZBUS_ASSERT(chan != NULL, "chan is required"); in zbus_obs_is_chan_notification_masked()
602 _ZBUS_ASSERT(obs != NULL, "obs is required"); in zbus_obs_set_enable()