Lines Matching full:card
2 * CCID Passthru Card Device emulation
18 #define TYPE_CCID_CARD "ccid-card"
23 * into the smartcard device (hw/ccid-card-*.c)
29 const uint8_t *(*get_atr)(CCIDCardState *card, uint32_t *len);
30 void (*apdu_from_guest)(CCIDCardState *card,
33 void (*realize)(CCIDCardState *card, Error **errp);
34 void (*unrealize)(CCIDCardState *card);
38 * state of the CCID Card device (i.e. hw/ccid-card-*.c)
46 * API for smartcard calling the CCID device (used by hw/ccid-card-*.c)
48 void ccid_card_send_apdu_to_guest(CCIDCardState *card,
51 void ccid_card_card_removed(CCIDCardState *card);
52 void ccid_card_card_inserted(CCIDCardState *card);
53 void ccid_card_card_error(CCIDCardState *card, uint64_t error);
57 * devices connected/removed. Called by card implementation (passthru, local)
59 int ccid_card_ccid_attach(CCIDCardState *card);
60 void ccid_card_ccid_detach(CCIDCardState *card);