Lines Matching refs:BUFSIZE
119 #define BUFSIZE 16384 macro
372 (oci->bufcnt < BUFSIZE) && (needed < BUFSIZE)) { in ReadRequestFromClient()
375 ibuf = (char *) realloc(oci->buffer, BUFSIZE); in ReadRequestFromClient()
377 oci->size = BUFSIZE; in ReadRequestFromClient()
921 if (notWritten + BUFSIZE <= INT_MAX) { in FlushClient()
922 obuf = realloc(oco->buf, notWritten + BUFSIZE); in FlushClient()
930 oco->size = notWritten + BUFSIZE; in FlushClient()
983 oci->buffer = malloc(BUFSIZE); in AllocateInputBuffer()
988 oci->size = BUFSIZE; in AllocateInputBuffer()
1004 oco->buf = calloc(1, BUFSIZE); in AllocateOutputBuffer()
1009 oco->size = BUFSIZE; in AllocateOutputBuffer()