Lines Matching refs:pInfo
495 static void hal_write_cb(void* pContext, phTmlNfc_TransactInfo_t* pInfo);
497 static void hal_read_cb(void* pContext, phTmlNfc_TransactInfo_t* pInfo);
836 static void hal_write_cb(void* pContext, phTmlNfc_TransactInfo_t* pInfo) { in hal_write_cb() argument
839 if (pInfo->wStatus == NFCSTATUS_SUCCESS) { in hal_write_cb()
840 NXPLOG_NCIHAL_D("write successful status = 0x%x", pInfo->wStatus); in hal_write_cb()
842 NXPLOG_NCIHAL_E("write error status = 0x%x", pInfo->wStatus); in hal_write_cb()
845 p_cb_data->status = pInfo->wStatus; in hal_write_cb()
860 static void hal_read_cb(void* pContext, phTmlNfc_TransactInfo_t* pInfo) { in hal_read_cb() argument
878 if (pInfo == NULL) { in hal_read_cb()
882 if (pInfo->wStatus == NFCSTATUS_SUCCESS) { in hal_read_cb()
883 NXPLOG_NCIHAL_D("hal_read_cb successful status = 0x%x", pInfo->wStatus); in hal_read_cb()
886 NXPLOG_NCIHAL_E("hal_read_cb error status = 0x%x", pInfo->wStatus); in hal_read_cb()
890 p_cb_data->status = pInfo->wStatus; in hal_read_cb()
895 if (test_data->ntf_validator(&(test_data->exp_ntf), pInfo) == 1) { in hal_read_cb()
903 else if (test_data->rsp_validator(&(test_data->exp_rsp), pInfo) == 1) { in hal_read_cb()