Lines Matching refs:lc
37 if (cmdApdu.lc > MAX_CMD_APDU_DATA_LENGTH) { in CommandApdu_toByteArray()
46 if (cmdApdu.lc > 0) { in CommandApdu_toByteArray()
47 commandApduArray[4] = cmdApdu.lc; in CommandApdu_toByteArray()
48 memcpy(commandApduArray + 5, cmdApdu.data, cmdApdu.lc); in CommandApdu_toByteArray()
73 if (cmdApdu.lc > 0) { in CommandApdu_getSize()
75 size += 1 + cmdApdu.lc; in CommandApdu_getSize()
96 int CommandApdu_formApduType4(char cla, char ins, char p1, char p2, char lc, in CommandApdu_formApduType4() argument
98 if (lc > MAX_CMD_APDU_DATA_LENGTH) { in CommandApdu_formApduType4()
106 cmdApdu->lc = lc; in CommandApdu_formApduType4()
107 if (lc > 0) { in CommandApdu_formApduType4()
108 memcpy(cmdApdu->data, cmdData, lc); in CommandApdu_formApduType4()
133 cmdApdu->lc = 0; in CommandApdu_formApduType2()