Lines Matching refs:read_data
34 uint8_t read_data; in ZTEST() local
39 zassert_true(k_pipe_read(&pipe, &read_data, 1, K_NO_WAIT) == 1, in ZTEST()
41 zassert_true(read_data == data, "Unexpected data received from pipe"); in ZTEST()
48 uint8_t read_data; in ZTEST() local
53 zassert_true(k_pipe_read(&pipe, &read_data, 1, K_NO_WAIT) == 1, "Failed to read from pipe"); in ZTEST()
54 zassert_true(read_data == data, "Unexpected data received from pipe"); in ZTEST()
55 zassert_true(k_pipe_read(&pipe, &read_data, 1, K_NO_WAIT) == 1, "Failed to read from pipe"); in ZTEST()
56 zassert_true(read_data == data, "Unexpected data received from pipe"); in ZTEST()
74 uint8_t read_data; in ZTEST() local
77 zassert_true(k_pipe_read(&pipe, &read_data, 1, K_MSEC(1000)) == -EAGAIN, in ZTEST()
126 uint8_t read_data; in ZTEST() local
134 zassert_true(k_pipe_read(&pipe, &read_data, 1, K_NO_WAIT) == 1, in ZTEST()
136 zassert_true(read_data == data, "Unexpected data received from pipe"); in ZTEST()