Searched defs:remaining (Results 1 - 6 of 6) sorted by relevance
/httpd/modules/filters/ |
H A D | mod_buffer.c | 48 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 D | mod_request.c | 57 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 D | mod_reqtimeout.c | 241 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 D | http_filters.c | 64 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/modules/lua/ |
H A D | lua_request.c | 245 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 D | httpd.h | 903 apr_off_t remaining; member in struct:request_rec
|
Completed in 34 milliseconds