Lines Matching refs:pInfo
503 static void hal_write_cb(void* pContext, phTmlNfc_TransactInfo_t* pInfo);
505 static void hal_read_cb(void* pContext, phTmlNfc_TransactInfo_t* pInfo);
844 static void hal_write_cb(void* pContext, phTmlNfc_TransactInfo_t* pInfo) { in hal_write_cb() argument
847 if (pInfo->wStatus == NFCSTATUS_SUCCESS) { in hal_write_cb()
848 NXPLOG_NCIHAL_D("write successful status = 0x%x", pInfo->wStatus); in hal_write_cb()
850 NXPLOG_NCIHAL_E("write error status = 0x%x", pInfo->wStatus); in hal_write_cb()
853 p_cb_data->status = pInfo->wStatus; in hal_write_cb()
868 static void hal_read_cb(void* pContext, phTmlNfc_TransactInfo_t* pInfo) { in hal_read_cb() argument
886 if (pInfo == NULL) { in hal_read_cb()
890 if (pInfo->wStatus == NFCSTATUS_SUCCESS) { in hal_read_cb()
891 NXPLOG_NCIHAL_D("hal_read_cb successful status = 0x%x", pInfo->wStatus); in hal_read_cb()
894 NXPLOG_NCIHAL_E("hal_read_cb error status = 0x%x", pInfo->wStatus); in hal_read_cb()
898 p_cb_data->status = pInfo->wStatus; in hal_read_cb()
903 if (test_data->ntf_validator(&(test_data->exp_ntf), pInfo) == 1) { in hal_read_cb()
911 else if (test_data->rsp_validator(&(test_data->exp_rsp), pInfo) == 1) { in hal_read_cb()