Searched refs:max (Results 1 - 13 of 13) sorted by relevance

/httpd/os/unix/
H A Dunixd.c66 rlim_t max = 0; local
78 if (!strcasecmp(str, "max")) {
92 max = atol(str);
95 /* if we aren't running as root, cannot increase max */
98 if (max && (max > limit->rlim_max)) {
102 else if (max) {
103 limit->rlim_max = max;
110 if (max) {
111 limit->rlim_max = max;
[all...]
/httpd/support/
H A Dhtcacheclean.c122 apr_off_t max; member in struct:stats
207 s->max /= KBYTE;
208 if (s->max >= KBYTE) {
210 s->max /= KBYTE;
230 s->max, mtype);
964 static void purge(char *path, apr_pool_t *pool, apr_off_t max, argument
975 s.max = max;
991 if ((!s.max || s.sum <= s.max)
1377 apr_off_t max, inodes, round; local
[all...]
/httpd/modules/filters/
H A Dmod_substitute.c655 apr_off_t max; local
659 rv = apr_strtoff(&max, arg, &end, 10);
662 max *= KBYTE;
665 max *= MBYTE;
668 max *= GBYTE;
676 if (rv != APR_SUCCESS || max < 0)
681 dcfg->max_line_length = (apr_size_t)max;
H A Dmod_reqtimeout.c42 int header_max_timeout; /* max timeout for req hdrs in secs */
46 int body_max_timeout; /* max timeout for req body in secs */
515 int rate = 0, initial = 0, max = 0; local
540 ret = parse_int(p, max_str, &max);
556 if (max && initial >= max) {
562 conf->header_max_timeout = max;
569 conf->body_max_timeout = max;
/httpd/modules/mappers/
H A Dmod_imagemap.c135 double max[2], min[2]; local
137 max[0] = coords[0][X];
141 max[0] = coords[1][X];
146 max[1] = coords[0][Y];
150 max[1] = coords[1][Y];
154 return ((point[X] >= min[0] && point[X] <= max[0]) &&
155 (point[Y] >= min[1] && point[Y] <= max[1]));
H A Dmod_negotiation.c2248 int j, max; local
2253 || !(max = variant->content_languages->nelts)) {
2257 for (j = 0; j < max; ++j) {
2947 * Cache-Control: max-age=N, which we currently don't.
/httpd/modules/cache/
H A Dmod_cache_socache.c113 apr_off_t max; /* maximum file size for cached files */ member in struct:cache_socache_dir_conf
392 if (len > dconf->max) {
396 key, len, dconf->max);
402 if (APR_SUCCESS != store_table(r->headers_out, NULL, dconf->max, &total)
403 || APR_SUCCESS != store_table(r->headers_in, NULL, dconf->max,
408 key, total, dconf->max);
412 if (total >= dconf->max) {
416 key, len, dconf->max);
466 sobj->buffer = apr_palloc(sobj->pool, dconf->max + 1);
467 sobj->buffer_len = dconf->max
[all...]
/httpd/docs/manual/style/scripts/
H A Dprettify.js340 ranges.push([Math.max(65, start) | 32, Math.min(end, 90) | 32]);
343 ranges.push([Math.max(97, start) & ~32, Math.min(end, 122) & ~32]);
357 lastRange[1] = Math.max(lastRange[1], range[1]);
404 // groups are 1-indexed, so max group index is count of '('
1077 var offset = Math.max(0, ((opt_startLineNum - 1 /* zero index */)) | 0) || 0;
H A Dprettify.min.js16 ranges.push([start,end]);if(!(end<65||start>122)){if(!(end<65||start>90)){ranges.push([Math.max(65,start)|32,Math.min(end,90)|32]);}
17 if(!(end<97||start>122)){ranges.push([Math.max(97,start)&~32,Math.min(end,122)&~32]);}}}}
18 ranges.sort(function(a,b){return(a[0]-b[0])||(b[1]-a[1]);});var consolidatedRanges=[];var lastRange=[];for(var i=0;i<ranges.length;++i){var range=ranges[i];if(range[0]<=lastRange[1]+1){lastRange[1]=Math.max(lastRange[1],range[1]);}else{consolidatedRanges.push(lastRange=range);}}
94 var ol=document.createElement('ol');ol.className='linenums';var offset=Math.max(0,((opt_startLineNum-1))|0)||0;for(var i=0,n=listItems.length;i<n;++i){li=listItems[i];li.className='L'+((i+offset)%1);if(!li.firstChild){li.appendChild(document.createTextNode('\xA0'));}
/httpd/modules/proxy/
H A Dmod_proxy_ftp.c609 apr_size_t len, max; local
628 max = sizeof(ctx->buffer) - strlen(ctx->buffer) - 1;
629 if (len > max) {
630 len = max;
/httpd/include/
H A Dhttpd.h303 /** The max number of regex captures that can be expanded by ap_pregsub */
2121 * @param num max num of params or -1 for unlimited
2122 * @param size max size allowed for parsed data
2294 * @param max high end of range
2297 AP_DECLARE(apr_uint32_t) ap_random_pick(apr_uint32_t min, apr_uint32_t max);
/httpd/modules/lua/
H A Dmod_lua.c1613 const char *max)
1646 vmax = max ? atoi(max) : 1;
1609 register_lua_scope(cmd_parms *cmd, void *_cfg, const char *scope, const char *min, const char *max) argument
/httpd/server/
H A Dcore.c4319 "Limit (0 = unlimited) on max number of header fields in a request message"),
4342 OR_ALL, "Soft/hard limits for max CPU usage in seconds"),
4345 OR_ALL, "Soft/hard limits for max CPU usage in seconds"),
4350 OR_ALL, "Soft/hard limits for max memory usage per process"),
4353 OR_ALL, "Soft/hard limits for max memory usage per process"),
4358 OR_ALL, "soft/hard limits for max number of processes per uid"),
4361 OR_ALL, "soft/hard limits for max number of processes per uid"),
5136 AP_DECLARE(apr_uint32_t) ap_random_pick(apr_uint32_t min, apr_uint32_t max)
5142 if (max < 16384) {
5145 RAND_RANGE(num16, min, max, APR_UINT16_MA
[all...]

Completed in 3674 milliseconds