Home
last modified time | relevance | path

Searched refs:MESSAGE_SIZE (Results 1 – 9 of 9) sorted by relevance

/Zephyr-latest/tests/posix/common/src/
Dmqueue.c16 #define MESSAGE_SIZE 16 macro
21 static char send_data[MESSAGE_SIZE] = "timed data send";
30 static char rec_data[MESSAGE_SIZE];
40 zassert_false(mq_timedsend(mqd, send_data, MESSAGE_SIZE, 0, &curtime), in sender_thread()
58 mq_timedreceive(mqd, rec_data, MESSAGE_SIZE, 0, &curtime); in receiver_thread()
77 attrs.mq_msgsize = MESSAGE_SIZE; in ZTEST()
108 mq_receive(mqd, rec_data, MESSAGE_SIZE, 0); in notify_function_basic()
121 .mq_msgsize = MESSAGE_SIZE, in ZTEST()
133 memset(rec_data, 0, MESSAGE_SIZE); in ZTEST()
139 zassert_ok(mq_send(mqd, send_data, MESSAGE_SIZE, 0), "Unable to send message"); in ZTEST()
[all …]
/Zephyr-latest/tests/benchmarks/app_kernel/src/
Dmemcfg.h12 #define MESSAGE_SIZE 4096 macro
Dreceiver.h25 extern char data_recv[MESSAGE_SIZE];
Dreceiver.c20 BENCH_DMEM char data_recv[MESSAGE_SIZE] = { 0 };
Dmailbox_r.c46 for (getsize = 8; getsize <= MESSAGE_SIZE; getsize <<= 1) { in mailrecvtask()
Dmaster.h52 extern char data_bench[MESSAGE_SIZE];
Dmailbox_b.c77 for (putsize = 8U; putsize <= MESSAGE_SIZE; putsize <<= 1) { in mailbox_test()
Dmaster.c24 BENCH_BMEM char data_bench[MESSAGE_SIZE];
/Zephyr-latest/subsys/logging/backends/
Dlog_backend_rtt.c41 #define MESSAGE_SIZE CONFIG_LOG_BACKEND_RTT_MESSAGE_SIZE macro
61 static uint8_t line_buf[MESSAGE_SIZE + DROP_MSG_LEN];
114 if (line_pos < line_buf + MESSAGE_SIZE - 1) { in char_out_drop_mode()
138 __ASSERT_NO_MSG(line_pos - line_buf <= MESSAGE_SIZE); in line_out_drop_mode()