Searched refs:static_data (Results 1 – 1 of 1) sorted by relevance
/Zephyr-Core-3.6.0/tests/lib/ringbuffer/src/ |
D | main.c | 171 } static_data[] = { variable 182 int ret = ring_buf_item_put(pbuf, static_data[index].type, static_data[index].value, in tringbuf_put() 183 static_data[index].buffer, static_data[index].length); in tringbuf_put() 198 zassert_equal(type, static_data[index].type); in tringbuf_get() 199 zassert_equal(value, static_data[index].value); in tringbuf_get() 200 zassert_equal(size32, static_data[index].length); in tringbuf_get() 201 zassert_equal(memcmp(rx_data, static_data[index].buffer, size32), 0); in tringbuf_get() 213 zassert_equal(type, static_data[index].type); in tringbuf_get_discard() 214 zassert_equal(value, static_data[index].value); in tringbuf_get_discard() 215 zassert_equal(size32, static_data[index].length); in tringbuf_get_discard()
|