Home
last modified time | relevance | path

Searched refs:sent_bytes (Results 1 – 3 of 3) sorted by relevance

/PHP-5.5/sapi/roxen/
H A Droxen.c215 int sent_bytes = 0; in php_roxen_low_ub_write() local
230 sent_bytes = Pike_sp[-1].u.integer; in php_roxen_low_ub_write()
232 if(sent_bytes != str_length) { in php_roxen_low_ub_write()
236 return sent_bytes; in php_roxen_low_ub_write()
251 int sent_bytes = 0, fd = MY_FD; in php_roxen_sapi_ub_write() local
254 for(sent_bytes=0;sent_bytes < str_length;) in php_roxen_sapi_ub_write()
257 written = fd_write(fd, str + sent_bytes, str_length - sent_bytes); in php_roxen_sapi_ub_write()
266 return sent_bytes; in php_roxen_sapi_ub_write()
273 sent_bytes += written; in php_roxen_sapi_ub_write()
277 THREAD_SAFE_RUN(sent_bytes = php_roxen_low_ub_write(str, str_length TSRMLS_CC), in php_roxen_sapi_ub_write()
[all …]
/PHP-5.5/sapi/caudium/
H A Dcaudium.c213 int sent_bytes = 0; in php_caudium_low_ub_write() local
227 if(sent_bytes != str_length) { in php_caudium_low_ub_write()
232 return sent_bytes; in php_caudium_low_ub_write()
245 int sent_bytes = 0, fd = MY_FD; in php_caudium_sapi_ub_write() local
248 for(sent_bytes=0;sent_bytes < str_length;) in php_caudium_sapi_ub_write()
251 written = fd_write(fd, str + sent_bytes, str_length - sent_bytes); in php_caudium_sapi_ub_write()
260 THIS->written += sent_bytes; in php_caudium_sapi_ub_write()
261 return sent_bytes; in php_caudium_sapi_ub_write()
267 sent_bytes += written; in php_caudium_sapi_ub_write()
270 THIS->written += sent_bytes; in php_caudium_sapi_ub_write()
[all …]
/PHP-5.5/sapi/phttpd/
H A Dphttpd.c58 int sent_bytes; in php_phttpd_sapi_ub_write() local
60 sent_bytes = fd_write(PHG(cip)->fd, str, str_length); in php_phttpd_sapi_ub_write()
62 if (sent_bytes == -1) { in php_phttpd_sapi_ub_write()
66 return sent_bytes; in php_phttpd_sapi_ub_write()

Completed in 13 milliseconds