Home
last modified time | relevance | path

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

/PHP-5.3/sapi/nsapi/
H A Dnsapi.c628 int bytes_to_read = count_bytes - bytes_read; in sapi_nsapi_read_post() local
630 if (content_length < bytes_to_read) { in sapi_nsapi_read_post()
631 bytes_to_read = content_length; in sapi_nsapi_read_post()
634 length = net_read(rc->sn->csd, read_ptr, bytes_to_read, NSAPI_G(read_timeout)); in sapi_nsapi_read_post()
/PHP-5.3/main/
H A Drfc1867.c310 int bytes_to_read, total_read = 0, actual_read = 0; in fill_buffer() local
320 bytes_to_read = self->bufsize - self->bytes_in_buffer; in fill_buffer()
323 while (bytes_to_read > 0) { in fill_buffer()
327 actual_read = sapi_module.read_post(buf, bytes_to_read TSRMLS_CC); in fill_buffer()
334 bytes_to_read -= actual_read; in fill_buffer()

Completed in 12 milliseconds