Home
last modified time | relevance | path

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

/PHP-5.5/sapi/nsapi/
H A Dnsapi.c626 int bytes_to_read = count_bytes - bytes_read; in sapi_nsapi_read_post() local
628 if (content_length < bytes_to_read) { in sapi_nsapi_read_post()
629 bytes_to_read = content_length; in sapi_nsapi_read_post()
632 length = net_read(rc->sn->csd, read_ptr, bytes_to_read, NSAPI_G(read_timeout)); in sapi_nsapi_read_post()
/PHP-5.5/main/
H A Drfc1867.c238 int bytes_to_read, total_read = 0, actual_read = 0; in fill_buffer() local
248 bytes_to_read = self->bufsize - self->bytes_in_buffer; in fill_buffer()
251 while (bytes_to_read > 0) { in fill_buffer()
255 actual_read = sapi_module.read_post(buf, bytes_to_read TSRMLS_CC); in fill_buffer()
262 bytes_to_read -= actual_read; in fill_buffer()

Completed in 11 milliseconds