Lines Matching refs:rx
118 void* rx = NULL; in exec_xfer() local
131 rc = spi_add_data_xfer_cmd(dev, &tx, &rx, len); in exec_xfer()
150 return memcmp(result, rx, len); in exec_xfer()
176 void* rx = NULL; in TEST_P() local
183 rc = spi_add_data_xfer_cmd(dev, &tx, &rx, 1); in TEST_P()
186 EXPECT_NE(rx, NULL); in TEST_P()
188 rx = NULL; in TEST_P()
195 rc = spi_add_data_xfer_cmd(dev, NULL, &rx, 1); in TEST_P()
197 EXPECT_NE(rx, NULL); in TEST_P()
198 rx = NULL; in TEST_P()
242 void* rx; in TEST_P() local
250 rc = spi_add_data_xfer_cmd(dev, &tx, &rx, MAX_TOTAL_PAYLOAD + 1); in TEST_P()
442 void* rx; in TEST_P() local
454 rc = spi_add_data_xfer_cmd(dev, NULL, &rx, sz); in TEST_P()
465 EXPECT_EQ(memcmp(expected, rx, sz), 0); in TEST_P()