Searched refs:remaining (Results 1 - 11 of 11) sorted by relevance

/httpd/modules/filters/
H A Dmod_request.c57 apr_off_t remaining; member in struct:keep_body_filter_ctx
98 if (apr_strtoff(&ctx->remaining, lenp, &endstr, 10)
99 || endstr == lenp || *endstr || ctx->remaining < 0) {
111 if (dconf->keep_body < ctx->remaining) {
115 " of %" APR_OFF_T_FMT, ctx->remaining, dconf->keep_body);
123 ctx->remaining = dconf->keep_body;
134 if (APR_SUCCESS == rv && len > ctx->remaining) {
145 ctx->remaining -= len;
171 apr_off_t remaining; member in struct:kept_body_filter_ctx
221 apr_brigade_length(kept_body, 1, &ctx->remaining);
[all...]
H A Dmod_buffer.c48 apr_off_t remaining; member in struct:buffer_ctx
218 ctx->remaining = ctx->conf->size;
220 while (!ctx->seen_eos && !seen_flush && ctx->remaining > 0) {
226 ctx->remaining);
271 ctx->remaining -= size;
H A Dmod_reqtimeout.c241 apr_off_t remaining = HUGE_STRING_LEN; local
250 rv = ap_get_brigade(f->next, bb, AP_MODE_GETLINE, APR_NONBLOCK_READ, remaining);
269 remaining -= bblen;
270 if (remaining <= 0) {
/httpd/modules/http/
H A Dhttp_filters.c64 apr_off_t remaining; member in struct:http_filter_ctx
122 ctx->remaining = 0;
136 if (ctx->remaining) {
147 if (!ctx->remaining && c == '0') {
166 ctx->remaining = (ctx->remaining << 4) | xvalue;
168 if (ctx->chunkbits <= 0 || ctx->remaining < 0) {
307 if (apr_strtoff(&ctx->remaining, lenp, &endstr, 10)
308 || endstr == lenp || *endstr || ctx->remaining < 0) {
310 ctx->remaining
[all...]
/httpd/
H A Dap.d30 offset_t remaining;
/httpd/modules/arch/win32/
H A Dmod_isapi.c598 if (r->remaining < *buf_size) {
599 *buf_size = (apr_size_t)r->remaining;
890 /* Soak up remaining input */
891 if (r->remaining > 0) {
1197 if (r->remaining < *buf_size) {
1198 *buf_size = (apr_size_t)r->remaining;
1513 if (r->remaining) {
1514 cid->ecb->cbTotalBytes = (apr_size_t)r->remaining;
/httpd/modules/lua/
H A Dlua_request.c245 apr_off_t length = r->remaining;
287 apr_off_t length = r->remaining;
424 if (maxSize > 0 && r->remaining > maxSize) {
650 return r->remaining;
2337 apr_size_t remaining = plen; local
2344 while (remaining > 0) {
2345 received = remaining;
2348 remaining -= received;
2358 remaining);
2362 remaining);
[all...]
/httpd/include/
H A Dhttpd.h903 apr_off_t remaining; member in struct:request_rec
/httpd/modules/proxy/
H A Dmod_proxy_scgi.c290 bodylen = apr_psprintf(r->pool, "%" APR_OFF_T_FMT, r->remaining);
H A Dmod_proxy.c1031 && (r->read_length || r->read_chunked || r->remaining))
/httpd/modules/dav/main/
H A Dmod_dav.c521 /* deliver whatever might be remaining in the brigade */
2456 r->remaining = 0;
2482 r->remaining = apr_atoi64(lenp);
2485 if (r->read_chunked || r->remaining > 0) {

Completed in 1843 milliseconds