Searched refs:_ZBUS_ASSERT (Results 1 – 4 of 4) sorted by relevance
/Zephyr-Core-3.7.0/subsys/zbus/ |
D | zbus.c | 111 _ZBUS_ASSERT(false, "Unreachable"); in _zbus_notify_observer() 133 _ZBUS_ASSERT(buf != NULL, "net_buf zbus_msg_subscribers_pool is " in _zbus_vded_exec() 150 _ZBUS_ASSERT(observation != NULL, "observation must be not NULL"); in _zbus_vded_exec() 244 _ZBUS_ASSERT(!k_is_in_isr(), "cannot attach to an ISR"); in zbus_obs_attach_to_thread() 245 _ZBUS_ASSERT(obs != NULL, "obs is required"); in zbus_obs_attach_to_thread() 262 _ZBUS_ASSERT(!k_is_in_isr(), "cannot detach from an ISR"); in zbus_obs_detach_from_thread() 263 _ZBUS_ASSERT(obs != NULL, "obs is required"); in zbus_obs_detach_from_thread() 340 _ZBUS_ASSERT(chan != NULL, "chan is required"); in zbus_chan_pub() 341 _ZBUS_ASSERT(msg != NULL, "msg is required"); in zbus_chan_pub() 371 _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 | 70 …This configuration enables the developer to change the _ZBUS_ASSERT behavior. When this configurat… 71 …enabled, _ZBUS_ASSERT returns -EFAULT instead of assert. It makes it more straightforward to test …
|
/Zephyr-Core-3.7.0/include/zephyr/zbus/ |
D | zbus.h | 183 #define _ZBUS_ASSERT(_cond, _fmt, ...) \ macro 193 #define _ZBUS_ASSERT(_cond, _fmt, ...) __ASSERT(_cond, _fmt, ##__VA_ARGS__) macro 799 _ZBUS_ASSERT(obs != NULL, "obs is required"); in zbus_obs_is_enabled() 800 _ZBUS_ASSERT(enable != NULL, "enable is required"); in zbus_obs_is_enabled()
|