Searched refs:responseSize (Results 1 – 1 of 1) sorted by relevance
524 const uint16_t responseSize = (responseHeader[0] << 8) | responseHeader[1]; in readResponse() local525 ALOGV("%u Expecting response of size %i", mMark, responseSize); in readResponse()526 std::vector<uint8_t> response(std::min(responseSize, MAX_SIZE)); in readResponse()531 uint16_t remainingBytes = responseSize - response.size(); in readResponse()