Lines Matching refs:sbuffer

1771 	  http->stream.next_in > http->sbuffer)  in httpPeek()
1772 memmove(http->sbuffer, http->stream.next_in, http->stream.avail_in); in httpPeek()
1774 http->stream.next_in = http->sbuffer; in httpPeek()
1785 memcpy(http->sbuffer + http->stream.avail_in, http->buffer, buflen); in httpPeek()
1814 http_debug_hex("2httpPeek", (char *)http->sbuffer, (int)http->stream.avail_in); in httpPeek()
2002 http_debug_hex("2httpRead2", (char *)http->sbuffer, (int)http->stream.avail_in); in httpRead2()
2026 http->stream.next_in > http->sbuffer) in httpRead2()
2027 memmove(http->sbuffer, http->stream.next_in, http->stream.avail_in); in httpRead2()
2029 http->stream.next_in = http->sbuffer; in httpRead2()
2039 … bytes = http_read_buffered(http, (char *)http->sbuffer + http->stream.avail_in, (size_t)buflen); in httpRead2()
2042 … bytes = http_read_chunk(http, (char *)http->sbuffer + http->stream.avail_in, (size_t)buflen); in httpRead2()
3343 sret = http_write_chunk(http, (char *)http->sbuffer, slen); in httpWrite2()
3345 sret = http_write(http, (char *)http->sbuffer, slen); in httpWrite2()
3355 http->stream.next_out = (Bytef *)http->sbuffer; in httpWrite2()
3726 http_write_chunk(http, (char *)http->sbuffer, bytes); in http_content_coding_finish()
3728 http_write(http, (char *)http->sbuffer, bytes); in http_content_coding_finish()
3731 http->stream.next_out = (Bytef *)http->sbuffer; in http_content_coding_finish()
3738 free(http->sbuffer); in http_content_coding_finish()
3739 http->sbuffer = NULL; in http_content_coding_finish()
3748 free(http->sbuffer); in http_content_coding_finish()
3749 http->sbuffer = NULL; in http_content_coding_finish()
3828 if ((http->sbuffer = malloc(_HTTP_MAX_SBUFFER)) == NULL) in http_content_coding_start()
3851 http->stream.next_out = (Bytef *)http->sbuffer; in http_content_coding_start()
3857 if ((http->sbuffer = malloc(_HTTP_MAX_SBUFFER)) == NULL) in http_content_coding_start()
3873 free(http->sbuffer); in http_content_coding_start()
3874 http->sbuffer = NULL; in http_content_coding_start()
3881 http->stream.next_in = http->sbuffer; in http_content_coding_start()