Home | History | Annotate | Download | only in ese_relay

Lines Matching refs:ese

16  * Hack-y server to forward communication with an eSE during development.
28 #define LOG_TAG "ese-relay"
29 #include <ese/ese.h>
30 #include <ese/log.h>
35 void ese_relay_init(struct EseInterface *ese);
73 struct EseInterface ese;
74 ese_relay_init(&ese);
100 if (ese_open(&ese, kEseOpenData)) {
102 if (ese_error(&ese))
103 ALOGE("eSE error (%d): %s", ese_error_code(&ese),
104 ese_error_message(&ese));
107 printf("eSE is open\n");
151 ese.ops->hw_reset(&ese);
156 ese.ops->hw_reset(&ese);
171 rx_len = ese_transceive(&ese, tx_buf, tx_len, rx_buf, sizeof(rx_buf));
172 if (ese_error(&ese)) {
173 ALOGE("An error (%d) occurred: %s", ese_error_code(&ese),
174 ese_error_message(&ese));
209 ese_close(&ese);