/external/libese/libese/tests/ |
ese_unittests.cpp | 109 EXPECT_EQ(-1, ese_transceive(&ese_, tx, 0, rx, 0)); 110 EXPECT_EQ(-1, ese_transceive(&ese_, tx+1, 0, rx, 0)); 111 EXPECT_EQ(-1, ese_transceive(&ese_, tx, 0, rx+1, 0)); 112 EXPECT_EQ(-1, ese_transceive(&ese_, tx, 0, rx, 100)); 113 EXPECT_EQ(-1, ese_transceive(&ese_, tx, 220, rx, 100)); 114 EXPECT_EQ(-1, ese_transceive(&ese_, tx+1, 0, rx+1, 0)); 130 EXPECT_EQ(-1, ese_transceive(&dummy, NULL, 0, NULL, 0));
|
/external/libese/libese-cpp/include/esecpp/ |
EseInterface.h | 47 return ese_transceive(mEse,
|
/external/libese/libese/include/ese/ |
ese.h | 51 * ese_transceive(my_ese, ...); 74 int ese_transceive(struct EseInterface *ese, const uint8_t *tx_buf, uint32_t tx_len, uint8_t *rx_buf, uint32_t rx_max);
|
/external/libese/libese-hw/tests/ |
ese_hw_echo_tests.cpp | 48 EXPECT_EQ(apdu_len, ese_transceive(&ese_, apdu.data(), apdu_len, apdu_reply.data(), apdu_reply.size()));
|
/external/libese/tools/ese_replay/ |
main.c | 106 reply.len = (uint32_t)ese_transceive(
|
/external/libese/examples/ |
ese_nxp_sample.c | 109 recvd = ese_transceive(&ese, (uint8_t *)apdu->bytes, apdu->length, rx_buf,
|
/external/libese/libese/ |
ese.c | 86 ESE_API int ese_transceive(struct EseInterface *ese, const uint8_t *tx_buf, function
|
/external/libese/apps/weaver/ |
weaver.c | 89 rx_len = ese_transceive(ese, kManageChannelOpen, sizeof(kManageChannelOpen), 160 rx_len = ese_transceive(session->ese, close_channel, sizeof(close_channel), 198 ese_transceive(session->ese, get_num_slots, sizeof(get_num_slots), rx_buf,
|
/external/libese/tools/ese_ls_provision/ |
ese_ls_provision.cpp | 64 auto res = ese_transceive(&static_ese, 68 LOG(ERROR) << "ese_transceive result: " << (int) res
|
/external/libese/tools/ese_relay/ |
ese_relay.c | 171 rx_len = ese_transceive(&ese, tx_buf, tx_len, rx_buf, sizeof(rx_buf));
|
/external/libese/libese-teq1/tests/ |
teq1_unittests.cpp | 543 EXPECT_EQ(0, ese_transceive(&ese_, payload, sizeof(payload), reply, sizeof(reply))); 589 EXPECT_EQ(0, ese_transceive(&ese_, payload, sizeof(payload), reply, sizeof(reply))); 670 EXPECT_EQ(0, ese_transceive(&ese_, payload, sizeof(payload), reply, sizeof(reply))); 758 EXPECT_EQ(-1, ese_transceive(&ese_, payload, sizeof(payload), reply, sizeof(reply)));
|
/external/libese/apps/boot/ |
boot.c | 81 rx_len = ese_transceive(ese, kManageChannelOpen, sizeof(kManageChannelOpen), 151 rx_len = ese_transceive(session->ese, close_channel, sizeof(close_channel),
|