Lines Matching refs:p_data

138     memcpy(&response[0], atrData.p_data, atrData.len);  in getAtr()
154 if (atrData.p_data != NULL) { in getAtr()
155 phNxpEse_free(atrData.p_data); in getAtr()
175 gsTxRxBuffer.cmdData.p_data = in transmit()
177 if (NULL == gsTxRxBuffer.cmdData.p_data) { in transmit()
183 memcpy(gsTxRxBuffer.cmdData.p_data, data.data(), gsTxRxBuffer.cmdData.len); in transmit()
193 memcpy(&result[0], gsTxRxBuffer.rspData.p_data, gsTxRxBuffer.rspData.len); in transmit()
207 if (NULL != gsTxRxBuffer.cmdData.p_data) { in transmit()
208 phNxpEse_free(gsTxRxBuffer.cmdData.p_data); in transmit()
209 gsTxRxBuffer.cmdData.p_data = NULL; in transmit()
211 if (NULL != gsTxRxBuffer.rspData.p_data) { in transmit()
212 phNxpEse_free(gsTxRxBuffer.rspData.p_data); in transmit()
213 gsTxRxBuffer.rspData.p_data = NULL; in transmit()
249 cmdApdu.p_data = (uint8_t*)phNxpEse_memalloc(manageChannelCommand.size() * in openLogicalChannel()
251 memcpy(cmdApdu.p_data, manageChannelCommand.data(), cmdApdu.len); in openLogicalChannel()
260 if (NULL != rspApdu.p_data && rspApdu.len > 0) { in openLogicalChannel()
261 if (rspApdu.p_data[0] == 0x64 && rspApdu.p_data[1] == 0xFF) { in openLogicalChannel()
268 } else if (rspApdu.p_data[rspApdu.len - 2] == 0x6A && in openLogicalChannel()
269 rspApdu.p_data[rspApdu.len - 1] == 0x81) { in openLogicalChannel()
272 } else if (rspApdu.p_data[rspApdu.len - 2] == 0x90 && in openLogicalChannel()
273 rspApdu.p_data[rspApdu.len - 1] == 0x00) { in openLogicalChannel()
274 resApduBuff.channelNumber = rspApdu.p_data[0]; in openLogicalChannel()
278 } else if (((rspApdu.p_data[rspApdu.len - 2] == 0x6E) || in openLogicalChannel()
279 (rspApdu.p_data[rspApdu.len - 2] == 0x6D)) && in openLogicalChannel()
280 rspApdu.p_data[rspApdu.len - 1] == 0x00) { in openLogicalChannel()
284 phNxpEse_free(cmdApdu.p_data); in openLogicalChannel()
285 phNxpEse_free(rspApdu.p_data); in openLogicalChannel()