Searched refs:responseSize (Results 1 – 1 of 1) sorted by relevance
635 const uint16_t responseSize = (responseHeader[0] << 8) | responseHeader[1]; in readResponse() local636 LOG(DEBUG) << mMark << " Expecting response of size " << responseSize; in readResponse()637 std::vector<uint8_t> response(std::min(responseSize, MAX_SIZE)); in readResponse()642 uint16_t remainingBytes = responseSize - response.size(); in readResponse()