Home
last modified time | relevance | path

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

/netbsd-src/crypto/external/cpl/trousers/dist/src/tcsd/
H A Dtcsd_threads.c242 int new_bufsize; in tcsd_thread_run() local
245 new_bufsize = data->comm.buf_size + TCSD_INCR_TXBUF_SIZE; in tcsd_thread_run()
248 new_bufsize = total_recv_size; in tcsd_thread_run()
252 LogDebug("Increasing communication buffer to %d bytes.", new_bufsize); in tcsd_thread_run()
253 new_buffer = realloc(data->comm.buf, new_bufsize); in tcsd_thread_run()
255 LogError("realloc of %d bytes failed.", new_bufsize); in tcsd_thread_run()
260 data->comm.buf_size = new_bufsize; in tcsd_thread_run()
/netbsd-src/external/mpl/bind/dist/lib/isc/netmgr/
H A Dhttp.c575 size_t new_bufsize = isc_buffer_usedlength(&h2->rbuf) + in on_server_data_chunk_recv_callback()
577 if (new_bufsize <= MAX_DNS_MESSAGE_SIZE && in on_server_data_chunk_recv_callback()
578 new_bufsize <= h2->content_length) in on_server_data_chunk_recv_callback()
564 size_t new_bufsize = isc_buffer_usedlength(&h2->rbuf) + on_server_data_chunk_recv_callback() local