Searched refs:zbus_chan_notify (Results 1 – 7 of 7) sorted by relevance
/Zephyr-latest/tests/subsys/zbus/unittests/src/ |
D | main.c | 150 isr_return = zbus_chan_notify(&aux2_chan, K_MSEC(100)); in isr_handler() 171 isr_return = zbus_chan_notify(&aux2_chan, K_NO_WAIT); in isr_handler() 218 zassert_equal(-EBUSY, zbus_chan_notify(&aux2_chan, K_NO_WAIT), "It must not be invalid"); in wq_dh_cb() 266 zassert_equal(-EFAULT, zbus_chan_notify(NULL, K_NO_WAIT), "It must be -EFAULT"); in ZTEST() 288 zassert_equal(0, zbus_chan_notify(&aux2_chan, K_NO_WAIT), "It must be valid"); in ZTEST() 301 zassert_equal(-EBUSY, zbus_chan_notify(&aux2_chan, K_NO_WAIT), "It must not be invalid"); in ZTEST() 331 zassert_equal(0, zbus_chan_notify(&stuck_chan, K_MSEC(200)), "It must finish correctly"); in ZTEST() 333 zassert_equal(-EAGAIN, zbus_chan_notify(&stuck_chan, K_MSEC(200)), in ZTEST() 359 zassert_equal(-ENOMEM, zbus_chan_notify(&msg_sub_no_pool_chan, K_MSEC(200)), in ZTEST() 628 zbus_chan_notify(&aux1_chan, K_NO_WAIT); in ZTEST() [all …]
|
/Zephyr-latest/samples/subsys/zbus/remote_mock/src/ |
D | mock_proxy.c | 121 zbus_chan_notify(chan, K_MSEC(500)); in decode_sentence()
|
/Zephyr-latest/tests/subsys/zbus/publish_stats/src/ |
D | main.c | 62 zassert_equal(0, zbus_chan_notify(&chan, K_NO_WAIT)); in ZTEST()
|
/Zephyr-latest/include/zephyr/zbus/ |
D | zbus.h | 652 int zbus_chan_notify(const struct zbus_channel *chan, k_timeout_t timeout);
|
/Zephyr-latest/subsys/zbus/ |
D | zbus.c | 436 int zbus_chan_notify(const struct zbus_channel *chan, k_timeout_t timeout) in zbus_chan_notify() function
|
/Zephyr-latest/doc/services/zbus/ |
D | index.rst | 610 It is possible to force zbus to notify a channel's observers by calling :c:func:`zbus_chan_notify`. 617 zbus_chan_notify(&acc_chan, K_NO_WAIT); 806 zbus_chan_notify(&acc_chan, K_SECONDS(1));
|
/Zephyr-latest/doc/releases/ |
D | release-notes-3.3.rst | 2511 * :c:func:`zbus_chan_notify`
|