Searched refs:decryptBufferLength (Results 1 - 2 of 2) sorted by relevance

/external/libcups/cups/
H A Dtls-sspi.c755 if (sspi->decryptBufferLength <= sspi->decryptBufferUsed)
759 if (sspi->decryptBufferLength >= 262144)
766 if ((temp = realloc(sspi->decryptBuffer, sspi->decryptBufferLength + 4096)) == NULL)
768 DEBUG_printf(("_httpTLSRead: Unable to allocate %d byte decryption buffer.", sspi->decryptBufferLength + 4096));
773 sspi->decryptBufferLength += 4096;
776 DEBUG_printf(("_httpTLSRead: Resized decryption buffer to %d bytes.", sspi->decryptBufferLength));
792 num = recv(http->fd, sspi->decryptBuffer + sspi->decryptBufferUsed, (int)(sspi->decryptBufferLength - sspi->decryptBufferUsed), 0);
1426 if (sspi->decryptBufferLength <= sspi->decryptBufferUsed)
1430 if (sspi->decryptBufferLength >= 262144)
1437 if ((temp = realloc(sspi->decryptBuffer, sspi->decryptBufferLength
[all...]
H A Dhttp-private.h239 size_t decryptBufferLength; /* Length of decrypt buffer */ member in struct:_http_sspi_s

Completed in 184 milliseconds