Home
last modified time | relevance | path

Searched refs:sRawVendorCmdResponse (Results 1 – 1 of 1) sorted by relevance

/packages/apps/Nfc/nci/jni/
DNativeNfcManager.cpp143 static std::vector<uint8_t> sRawVendorCmdResponse; variable
2121 sRawVendorCmdResponse.clear(); in nfcManager_nativeSendRawVendorCmd()
2144 if (mStatus == NFA_STATUS_OK && sRawVendorCmdResponse.size() > 2) { in nfcManager_nativeSendRawVendorCmd()
2145 resGid = sRawVendorCmdResponse[0] & NCI_GID_MASK; in nfcManager_nativeSendRawVendorCmd()
2146 resOid = sRawVendorCmdResponse[1]; in nfcManager_nativeSendRawVendorCmd()
2147 const jsize len = static_cast<jsize>(sRawVendorCmdResponse[2]); in nfcManager_nativeSendRawVendorCmd()
2148 if (sRawVendorCmdResponse.size() >= (sRawVendorCmdResponse[2] + 3)) { in nfcManager_nativeSendRawVendorCmd()
2150 std::vector<uint8_t> payloadVec(sRawVendorCmdResponse.begin() + 3, in nfcManager_nativeSendRawVendorCmd()
2151 sRawVendorCmdResponse.end()); in nfcManager_nativeSendRawVendorCmd()
2171 sRawVendorCmdResponse = std::vector<uint8_t>(p_param, p_param + param_len); in sendRawVsCmdCallback()