/Zephyr-latest/tests/kernel/msgq/msgq_api/src/ |
D | test_msgq_fail.c | 21 zassert_equal(ret, -ENOMSG); in put_fail() 36 zassert_equal(ret, -ENOMSG); in get_fail()
|
D | test_msgq_contexts.c | 79 zassert_equal(k_msgq_peek(pmsgq, &read_data), -ENOMSG); in purge_msgq() 208 zassert_equal(ret, -ENOMSG, "Peek message from empty queue"); in get_empty_entry() 211 zassert_equal(ret, -ENOMSG, "Got message from empty queue"); in get_empty_entry() 232 zassert_equal(ret, -ENOMSG, "Put message to full queue"); in put_full_entry()
|
D | test_msgq_purge.c | 19 zassert_equal(ret, -ENOMSG); in tThread_entry()
|
/Zephyr-latest/tests/subsys/fs/fcb/src/ |
D | fcb_test_init.c | 30 zassert_true(rc == -ENOMSG, "fcb_init call should fail"); in ZTEST()
|
/Zephyr-latest/subsys/net/lib/lwm2m/ |
D | lwm2m_obj_firmware_pull.c | 38 case -ENOMSG: in set_update_result()
|
D | lwm2m_pull_context.c | 255 ret = -ENOMSG; in do_firmware_transfer_reply_cb() 364 context.result_cb(context.obj_inst_id, -ENOMSG); in do_transmit_timeout_cb()
|
/Zephyr-latest/kernel/ |
D | msg_q.c | 167 result = -ENOMSG; in z_impl_k_msgq_put() 265 result = -ENOMSG; in z_impl_k_msgq_get() 309 result = -ENOMSG; in z_impl_k_msgq_peek() 355 result = -ENOMSG; in z_impl_k_msgq_peek_at() 388 arch_thread_return_value_set(pending_thread, -ENOMSG); in z_impl_k_msgq_purge()
|
D | mailbox.c | 271 SYS_PORT_TRACING_OBJ_FUNC_EXIT(k_mbox, message_put, mbox, timeout, -ENOMSG); in mbox_message_put() 274 return -ENOMSG; in mbox_message_put() 418 SYS_PORT_TRACING_OBJ_FUNC_EXIT(k_mbox, get, mbox, timeout, -ENOMSG); in k_mbox_get() 422 return -ENOMSG; in k_mbox_get()
|
/Zephyr-latest/lib/libc/armstdc/include/ |
D | errno.h | 83 #define ENOMSG 35 /**< Unexpected message type */ macro
|
/Zephyr-latest/lib/libc/minimal/include/ |
D | errno.h | 73 #define ENOMSG 35 /**< Unexpected message type */ macro
|
/Zephyr-latest/tests/subsys/zbus/unittests/src/ |
D | main.c | 589 zassert_equal(err, -ENOMSG, "Err must be -ENOMSG, the channel message is invalid"); in ZTEST() 593 zassert_equal(err, -ENOMSG, "Err must be -ENOMSG, the channel message is invalid"); in ZTEST() 597 zassert_equal(err, -ENOMSG, "Err must be -ENOMSG, the channel message is invalid"); in ZTEST() 752 zassert_equal(-ENOMSG, zbus_sub_wait(&foo_sub, &chan, K_NO_WAIT), NULL); in ZTEST() 781 zassert_equal(-ENOMSG, zbus_sub_wait_msg(&foo_msg_sub, &chan, &a, K_NO_WAIT), NULL); in ZTEST() 782 zassert_equal(-ENOMSG, zbus_sub_wait_msg(&foo_msg_sub, &chan, &a, K_MSEC(200)), NULL); in ZTEST()
|
/Zephyr-latest/subsys/mgmt/mcumgr/util/src/ |
D | zcbor_bulk.c | 52 return -ENOMSG; in zcbor_map_decode_bulk()
|
/Zephyr-latest/subsys/portability/cmsis_rtos_v1/ |
D | cmsis_msgq.c | 87 } else if (retval == -ENOMSG) { in osMessageGet()
|
D | cmsis_mailq.c | 155 } else if (retval == -ENOMSG) { in osMailGet()
|
/Zephyr-latest/tests/subsys/mgmt/mcumgr/zcbor_bulk/src/ |
D | main.c | 182 zassert_equal(rc, -ENOMSG, "Expected -ENOMSG, got %d", rc); in ZTEST() 218 zassert_equal(rc, -ENOMSG, "Expected -ENOMSG, got %d", rc); in ZTEST() 259 zassert_equal(rc, -ENOMSG, "Expected -ENOMSG, got %d", rc); in ZTEST() 453 zassert_equal(rc, -ENOMSG, "Expected ENOMSG(-42), got %d", rc); in ZTEST() 457 zassert_equal(imdd.ret, -ENOMSG, "Expected failure in decoding of inner map"); in ZTEST()
|
/Zephyr-latest/subsys/net/ip/ |
D | net_core.c | 222 ret = -ENOMSG; /* silently drop the pkt, not an error */ in check_ip() 295 ret = -ENOMSG; /* silently drop the pkt, not an error */ in check_ip() 394 if (status == -ENOMSG) { in net_send_data()
|
/Zephyr-latest/drivers/watchdog/ |
D | wdt_ifx_cat1.c | 52 return -ENOMSG; in ifx_cat1_wdt_setup()
|
/Zephyr-latest/drivers/net/ |
D | nsos_errno.c | 58 ERR(ENOMSG),
|
/Zephyr-latest/tests/kernel/mbox/mbox_api/src/ |
D | test_mbox_api.c | 150 K_NO_WAIT) == -ENOMSG, NULL); in tmbox_put() 292 (pmbox, &mmsg, NULL, K_NO_WAIT) == -ENOMSG, in tmbox_get() 303 (pmbox, &mmsg, NULL, K_NO_WAIT) == -ENOMSG, NULL); in tmbox_get()
|
/Zephyr-latest/samples/subsys/zbus/hello_world/src/ |
D | main.c | 175 if (err == -ENOMSG) { in main()
|
/Zephyr-latest/subsys/bluetooth/mesh/ |
D | beacon.c | 286 return -ENOMSG; in net_beacon_send() 308 int err = -ENOMSG; in net_beacon_for_subnet_send() 483 if (err < 0 && (err != -ENOMSG)) { in beacons_send_next()
|
/Zephyr-latest/subsys/portability/cmsis_rtos_v2/ |
D | msgq.c | 157 } else if (retval == -ENOMSG) { in osMessageQueueGet()
|
/Zephyr-latest/subsys/tracing/sysview/ |
D | SYSVIEW_Zephyr.txt | 17 …-76=EPROTO -77=EBADMSG -78=ENODATA -79=ETIME -80=ENOMSG -138=EILSEQ 18 NamedType ErrCodeMsg *=%i 0=ESUCCESS -11=EAGAIN -80=ENOMSG
|
/Zephyr-latest/tests/subsys/zbus/runtime_observers_registration/src/ |
D | main.c | 130 zassert_equal(-ENOMSG, zbus_chan_pub(&chan2, &sd, K_MSEC(500)), NULL); in ZTEST()
|
/Zephyr-latest/tests/subsys/input/api/src/ |
D | main.c | 76 zassert_equal(ret, -ENOMSG, "ret: %d", ret); in ZTEST()
|