Searched refs:CommandApdu (Results 1 – 4 of 4) sorted by relevance
/external/libese/esed/pn81a/tests/ |
D | apdu_test.cpp | 25 using android::CommandApdu; 31 const CommandApdu apdu{1, 2, 3, 4}; in TEST() 38 const CommandApdu apdu{4, 3, 2, 1, 0, 3}; in TEST() 45 const CommandApdu apdu{4, 3, 2, 1, 0, 256}; in TEST() 52 const CommandApdu apdu{5, 6, 7, 8, 0, 258}; in TEST() 59 const CommandApdu apdu{5, 6, 7, 8, 0, 65536}; in TEST() 66 const CommandApdu apdu{8, 7, 6, 5, 5, 0}; in TEST() 73 CommandApdu apdu{8, 7, 6, 5, 3, 0}; in TEST() 86 const CommandApdu apdu{8, 7, 6, 5, 256, 0}; in TEST() 94 CommandApdu apdu{8, 7, 6, 5, 65535, 0}; in TEST() [all …]
|
/external/libese/esed/pn81a/ |
D | apdu.h | 33 class CommandApdu { 35 CommandApdu(uint8_t cla, uint8_t ins, uint8_t p1, uint8_t p2) in CommandApdu() function 36 : CommandApdu(cla, ins, p1, p2, 0, 0) {} in CommandApdu() 37 CommandApdu(uint8_t cla, uint8_t ins, uint8_t p1, uint8_t p2, size_t lc, size_t le);
|
D | apdu.cpp | 23 CommandApdu::CommandApdu(const uint8_t cla, const uint8_t ins, const uint8_t p1, const uint8_t p2, in CommandApdu() function in android::CommandApdu
|
D | utils.h | 37 using ::android::CommandApdu; 78 T transceive(::android::esed::EseInterface& ese, const CommandApdu& command,
|