Home
last modified time | relevance | path

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

/external/libcups/cups/
Dtls-sspi.c848 int bytesToSave = pDataBuffer->cbBuffer - bytesToCopy; in _httpTLSRead() local
859 if (bytesToSave) in _httpTLSRead()
861 if ((sspi->readBufferLength - sspi->readBufferUsed) < bytesToSave) in _httpTLSRead()
865 if ((temp = realloc(sspi->readBuffer, sspi->readBufferUsed + bytesToSave)) == NULL) in _httpTLSRead()
867 DEBUG_printf(("_httpTLSRead: Unable to allocate %d bytes.", sspi->readBufferUsed + bytesToSave)); in _httpTLSRead()
872 sspi->readBufferLength = sspi->readBufferUsed + bytesToSave; in _httpTLSRead()
876 …i->readBuffer) + sspi->readBufferUsed, ((BYTE *)pDataBuffer->pvBuffer) + bytesToCopy, bytesToSave); in _httpTLSRead()
878 sspi->readBufferUsed += bytesToSave; in _httpTLSRead()