Searched refs:total_read (Results 1 – 7 of 7) sorted by relevance
/PHP-5.4/sapi/roxen/ |
H A D | roxen.c | 392 uint total_read = 0; in php_roxen_low_read_post() local 408 (total_read = Pike_sp[-1].u.string->len)); in php_roxen_low_read_post() 409 buf[total_read] = '\0'; in php_roxen_low_read_post() 411 total_read = 0; in php_roxen_low_read_post() 413 return total_read; in php_roxen_low_read_post() 419 uint total_read = 0; in php_roxen_sapi_read_post() local 420 THREAD_SAFE_RUN(total_read = php_roxen_low_read_post(buf, count_bytes), "read post"); in php_roxen_sapi_read_post() 421 return total_read; in php_roxen_sapi_read_post()
|
/PHP-5.4/sapi/continuity/ |
H A D | capi.c | 200 unsigned int max_read, total_read = 0; in sapi_capi_read_post() local 211 total_read = httpFread(rc->t, buffer, max_read); in sapi_capi_read_post() 213 if (total_read < 0) in sapi_capi_read_post() 214 total_read = -1; in sapi_capi_read_post() 216 rc->read_post_bytes = total_read; in sapi_capi_read_post() 218 return total_read; in sapi_capi_read_post()
|
/PHP-5.4/sapi/caudium/ |
H A D | caudium.c | 400 uint total_read = 0; in php_caudium_low_read_post() local 414 (total_read = Pike_sp[-1].u.string->len)); in php_caudium_low_read_post() 415 buf[total_read] = '\0'; in php_caudium_low_read_post() 417 total_read = 0; in php_caudium_low_read_post() 419 return total_read; in php_caudium_low_read_post() 425 uint total_read = 0; in php_caudium_sapi_read_post() local 426 THREAD_SAFE_RUN(total_read = php_caudium_low_read_post(buf, count_bytes), "read post"); in php_caudium_sapi_read_post() 427 return total_read; in php_caudium_sapi_read_post()
|
/PHP-5.4/sapi/aolserver/ |
H A D | aolserver.c | 168 uint total_read = 0; in php_ns_sapi_read_post() local 172 total_read = Ns_ConnRead(NSG(conn), buf, max_read); in php_ns_sapi_read_post() 174 if(total_read == NS_ERROR) { in php_ns_sapi_read_post() 175 total_read = -1; in php_ns_sapi_read_post() 177 NSG(data_avail) -= total_read; in php_ns_sapi_read_post() 180 return total_read; in php_ns_sapi_read_post()
|
/PHP-5.4/sapi/pi3web/ |
H A D | pi3web_sapi.c | 217 DWORD total_read=0; in sapi_pi3web_read_post() local 222 total_read += read_from_buf; in sapi_pi3web_read_post() 236 total_read += cbRead; in sapi_pi3web_read_post() 241 return total_read; in sapi_pi3web_read_post()
|
/PHP-5.4/sapi/isapi/ |
H A D | php5isapi.c | 332 DWORD total_read=0; in sapi_isapi_read_post() local 337 total_read += read_from_buf; in sapi_isapi_read_post() 351 total_read += cbRead; in sapi_isapi_read_post() 353 return total_read; in sapi_isapi_read_post()
|
/PHP-5.4/main/ |
H A D | rfc1867.c | 238 int bytes_to_read, total_read = 0, actual_read = 0; in fill_buffer() local 261 total_read += actual_read; in fill_buffer() 268 return total_read; in fill_buffer()
|
Completed in 34 milliseconds