Lines Matching refs:nbytes

261     int rv, nbytes = 0, total_hdrbytes, i;  in apr_socket_sendfile()  local
311 nbytes += hdrbytes; in apr_socket_sendfile()
358 *len = nbytes; in apr_socket_sendfile()
364 nbytes += rv; in apr_socket_sendfile()
367 *len = nbytes; in apr_socket_sendfile()
395 nbytes += trbytes; in apr_socket_sendfile()
397 *len = nbytes; in apr_socket_sendfile()
406 (*len) = nbytes; in apr_socket_sendfile()
417 apr_off_t nbytes = 0; in apr_socket_sendfile() local
471 nbytes = bytes_to_send; in apr_socket_sendfile()
475 &nbytes, /* number of bytes to write/written */ in apr_socket_sendfile()
488 if (nbytes) { in apr_socket_sendfile()
489 bytes_sent += nbytes; in apr_socket_sendfile()
497 bytes_sent += nbytes; in apr_socket_sendfile()
498 if (nbytes == 0) { in apr_socket_sendfile()
535 off_t nbytes = 0; in apr_socket_sendfile() local
592 &nbytes, /* number of bytes written */ in apr_socket_sendfile()
604 if (nbytes) { in apr_socket_sendfile()
606 (*len) = nbytes; in apr_socket_sendfile()
612 if (nbytes == 0) { in apr_socket_sendfile()
616 (*len) = nbytes; in apr_socket_sendfile()
628 nbytes = rv; in apr_socket_sendfile()
632 nbytes = 0; in apr_socket_sendfile()
645 (*len) = nbytes; in apr_socket_sendfile()
673 apr_size_t nbytes = *len, headerlen, trailerlen; in apr_socket_sendfile() local
757 if (nbytes) { /* any bytes to send from the file? */ in apr_socket_sendfile()
761 nbytes, /* number of bytes to send from file */ in apr_socket_sendfile()
780 if (nbytes) { in apr_socket_sendfile()
784 nbytes, /* number of bytes to send from file */ in apr_socket_sendfile()
982 apr_size_t nbytes; in apr_socket_sendfile() local
1063 rv = sendfilev(sock->socketdes, sfv, vecs, &nbytes); in apr_socket_sendfile()
1066 if (nbytes) { in apr_socket_sendfile()
1089 *len = nbytes; in apr_socket_sendfile()
1091 if (nbytes == 0) { in apr_socket_sendfile()