Searched refs:_ZBUS_ASSERT (Results 1 – 4 of 4) sorted by relevance
/Zephyr-Core-3.6.0/subsys/zbus/ |
D | zbus.c | 117 _ZBUS_ASSERT(false, "Unreachable"); in _zbus_notify_observer() 136 _ZBUS_ASSERT(buf != NULL, "net_buf zbus_msg_subscribers_pool is " in _zbus_vded_exec() 151 _ZBUS_ASSERT(observation != NULL, "observation must be not NULL"); in _zbus_vded_exec() 254 _ZBUS_ASSERT(!k_is_in_isr(), "cannot attach to an ISR"); in zbus_obs_attach_to_thread() 255 _ZBUS_ASSERT(obs != NULL, "obs is required"); in zbus_obs_attach_to_thread() 272 _ZBUS_ASSERT(!k_is_in_isr(), "cannot detach from an ISR"); in zbus_obs_detach_from_thread() 273 _ZBUS_ASSERT(obs != NULL, "obs is required"); in zbus_obs_detach_from_thread() 350 _ZBUS_ASSERT(chan != NULL, "chan is required"); in zbus_chan_pub() 351 _ZBUS_ASSERT(msg != NULL, "msg is required"); in zbus_chan_pub() 381 _ZBUS_ASSERT(chan != NULL, "chan is required"); in zbus_chan_read() [all …]
|
D | zbus_runtime_observers.c | 18 _ZBUS_ASSERT(!k_is_in_isr(), "ISR blocked"); in zbus_chan_add_obs() 19 _ZBUS_ASSERT(chan != NULL, "chan is required"); in zbus_chan_add_obs() 20 _ZBUS_ASSERT(obs != NULL, "obs is required"); in zbus_chan_add_obs() 75 _ZBUS_ASSERT(!k_is_in_isr(), "ISR blocked"); in zbus_chan_rm_obs() 76 _ZBUS_ASSERT(chan != NULL, "chan is required"); in zbus_chan_rm_obs() 77 _ZBUS_ASSERT(obs != NULL, "obs is required"); in zbus_chan_rm_obs()
|
D | Kconfig | 66 …This configuration enables the developer to change the _ZBUS_ASSERT behavior. When this configurat… 67 …enabled, _ZBUS_ASSERT returns -EFAULT instead of assert. It makes it more straightforward to test …
|
/Zephyr-Core-3.6.0/include/zephyr/zbus/ |
D | zbus.h | 177 #define _ZBUS_ASSERT(_cond, _fmt, ...) \ macro 187 #define _ZBUS_ASSERT(_cond, _fmt, ...) __ASSERT(_cond, _fmt, ##__VA_ARGS__) macro 766 _ZBUS_ASSERT(obs != NULL, "obs is required"); in zbus_obs_is_enabled() 767 _ZBUS_ASSERT(enable != NULL, "enable is required"); in zbus_obs_is_enabled()
|