Home
last modified time | relevance | path

Searched refs:bytes_in (Results 1 – 8 of 8) sorted by relevance

/mOS-networking-stack/samples/lighttpd-1.4.32/src/
H A Dchunk.h47 off_t bytes_in, bytes_out; member
H A Dmod_proxy.c487 hctx->wb->bytes_in += b->used - 1; in proxy_create_env()
496 for (offset = 0, req_c = req_cq->first; offset != req_cq->bytes_in; req_c = req_c->next) { in proxy_create_env()
497 off_t weWant = req_cq->bytes_in - offset; in proxy_create_env()
515 hctx->wb->bytes_in += weHave; in proxy_create_env()
531 hctx->wb->bytes_in += weHave; in proxy_create_env()
842 if (hctx->wb->bytes_out == hctx->wb->bytes_in) { in proxy_write_request()
H A Dconnections.c1068 for (c = cq->first; c && (dst_cq->bytes_in != (off_t)con->request.content_length); c = c->next) {
1071 weWant = con->request.content_length - dst_cq->bytes_in;
1162 if (dst_cq->bytes_in + toRead == (off_t)con->request.content_length) {
1176 buffer_prepare_copy(b, con->request.content_length - dst_cq->bytes_in + 1);
1182 dst_cq->bytes_in += toRead;
1186 if (dst_cq->bytes_in == (off_t)con->request.content_length) {
H A Dmod_fastcgi.c2048 hctx->wb->bytes_in += b->used - 1; in fcgi_create_env()
2056 for (offset = 0, req_c = req_cq->first; offset != req_cq->bytes_in; ) { in fcgi_create_env()
2057 …off_t weWant = req_cq->bytes_in - offset > FCGI_MAX_LENGTH ? FCGI_MAX_LENGTH : req_cq->bytes_in - … in fcgi_create_env()
2068 hctx->wb->bytes_in += sizeof(header); in fcgi_create_env()
2071 log_error_write(srv, __FILE__, __LINE__, "soso", "tosend:", offset, "/", req_cq->bytes_in); in fcgi_create_env()
2100 hctx->wb->bytes_in += weHave; in fcgi_create_env()
2146 hctx->wb->bytes_in += weHave; in fcgi_create_env()
2171 hctx->wb->bytes_in += sizeof(header); in fcgi_create_env()
3082 if (hctx->wb->bytes_out == hctx->wb->bytes_in) { in fcgi_write_request()
H A Dmod_scgi.c1631 hctx->wb->bytes_in += b->used - 1; in scgi_create_env()
1639 for (offset = 0, req_c = req_cq->first; offset != req_cq->bytes_in; req_c = req_c->next) { in scgi_create_env()
1640 off_t weWant = req_cq->bytes_in - offset; in scgi_create_env()
1658 hctx->wb->bytes_in += weHave; in scgi_create_env()
1674 hctx->wb->bytes_in += weHave; in scgi_create_env()
2349 if (hctx->wb->bytes_out == hctx->wb->bytes_in) { in scgi_write_request()
H A Dchunk.c159 cq->bytes_in = 0; in chunkqueue_reset()
H A Dmod_status.c491 buffer_append_long(b, c->request_content_queue->bytes_in); in mod_status_handle_server_status_html()
H A Dmod_webdav.c1003 for (c = cq->first; cq->bytes_out != cq->bytes_in; c = cq->first) { in webdav_parse_chunkqueue()
1004 size_t weWant = cq->bytes_out - cq->bytes_in; in webdav_parse_chunkqueue()