/httpd/modules/core/test/conf/ |
H A D | test62.conf | 3 $start \ 6 "Line:1-2 start at $start"
|
/httpd/build/rpm/ |
H A D | htcacheclean.init | 33 # Short-Description: start and stop Apache htcacheclean 57 start() { function 75 start) 76 start 87 start 92 start 96 echo $"Usage: $prog {start|stop|restart|condrestart|status|help}"
|
H A D | httpd.init | 33 # Short-Description: start and stop Apache HTTP Server 58 # work correctly with a thread-based MPM; notably PHP will refuse to start. 82 # things -- attempting to start while running is a failure, and shutdown 85 start() { function 111 start) 112 start 128 start 133 start 150 echo $"Usage: $prog {start|stop|restart|condrestart|reload|status|graceful|help|configtest}"
|
/httpd/support/ |
H A D | apachectl.in | 80 start|stop|restart|graceful|graceful-stop) 84 startssl|sslstart|start-SSL) 87 echo and then use "apachectl start".
|
H A D | ab.c | 89 /* Note: this version string should start with \d+[\d\.]* and be a valid 240 apr_time_t start, /* Start of connection */ member in struct:connection 241 connect, /* Connected, start writing */ 253 apr_time_t starttime; /* start time of connection */ 340 apr_time_t start, lasttime, stoptime; variable 816 timetaken = (double) (lasttime - start) / APR_USEC_PER_SEC; 1089 double timetaken = (double) (lasttime - start) / APR_USEC_PER_SEC; 1220 /* start asnchronous non-blocking connection */ 1274 c->start = lasttime = apr_time_now(); 1363 s->starttime = c->start; [all...] |
H A D | firehose.c | 64 apr_time_t start; member in struct:file_rec 135 "If an optional prefix is specified as a parameter, connections that start\n" \ 327 if (!file->start) { 328 file->start = header->timestamp;
|
/httpd/modules/http/ |
H A D | byterange_filter.c | 73 apr_off_t start; member in struct:indexes_t 141 apr_off_t number, start, end; local 163 start = clength - number; 171 start = number; 177 if (start > end) { 188 if (start == 0) { 193 ostart = start; 200 if (start < 0) { 201 start = 0; 203 if (start > 289 copy_brigade_range(apr_bucket_brigade *bb, apr_bucket_brigade *bbout, apr_off_t start, apr_off_t end) argument [all...] |
H A D | mod_mime.c | 493 static char *zap_sp_and_dup(apr_pool_t *p, const char *start, argument 496 while ((start < end) && apr_isspace(*start)) { 497 start++; 499 while ((end > start) && apr_isspace(*(end - 1))) { 503 *len = end - start; 505 return apr_pstrmemdup(p, start, end - start);
|
/httpd/modules/mappers/ |
H A D | mod_vhost_alias.c | 266 const char *start, *end; local 324 start = dots[0]+1; /* ptr to the first character */ 328 start = "_"; 329 end = start+1; 332 start = dots[N-1]+1; 339 start = dots[ndots-N]+1; 345 if (M > end - start) { 346 start = "_"; 347 end = start+1; 350 start [all...] |
/httpd/server/ |
H A D | apreq_param.c | 145 const char *start = qs; local 153 nlen = qs - start; 160 if (qs > start) { 165 nlen = qs - start; 167 vlen = qs - start - nlen - 1; 169 s = apreq_param_decode(¶m, pool, start, nlen, vlen); 181 start = qs + 1;
|
H A D | eoc_bucket.c | 31 b->start = 0;
|
H A D | util_filter.c | 163 int start, end; local 164 start = 0; 166 while (end >= start) { 167 int middle = (end + start) / 2; 177 start = middle + 1; 180 if (end < start) { 375 int start, end; local 376 start = 0; 378 while (end >= start) { 379 int middle = (end + start) / [all...] |
H A D | apreq_module_cgi.c | 48 * values (and don't start at 0 in count) 151 char *start, curarg[MAX_PROMPT_NESTING_LEVELS] = ""; local 157 start = buf[0]; 166 strcpy(start, type); 167 start += strlen(type); 176 strcpy(start, name); 177 start += strlen(name); 182 strcpy(start, label); 183 start += strlen(label); 193 strcpy(start, defva [all...] |
H A D | eor_bucket.c | 54 b->start = 0;
|
H A D | apreq_util.c | 356 unsigned char *start = (unsigned char *)dest; local 393 *dlen = d - start; 416 *dlen = d - start; 424 *dlen = d - start; 1058 wlen = last_out->start + last_out->length; 1086 e->start = last_out->start + FILE_BUCKET_LIMIT;
|
H A D | util.c | 338 * prefix. Returns bigstring if bigstring doesn't start with 753 static char *substring_conf(apr_pool_t *p, const char *start, int len, argument 761 if (start[i] == '\\' && (start[i + 1] == '\\' 762 || (quote && start[i + 1] == quote))) 763 *resp++ = start[++i]; 765 *resp++ = start[i]; 1070 char *start, *end; local 1074 start = buf; 1075 while (apr_isspace(*start)) [all...] |
/httpd/docs/manual/style/scripts/ |
H A D | prettify.js | 50 * Java annotations (start with "@") are now captured as literals ("lit") 245 * Since it matches globally, if the input strings have a start-of-input 325 var start = decodeEscape(p); 331 end = start; 333 ranges.push([start, end]); 338 if (!(end < 65 || start > 122)) { 339 if (!(end < 65 || start > 90)) { 340 ranges.push([Math.max(65, start) | 32, Math.min(end, 90) | 32]); 342 if (!(end < 97 || start > 122)) { 343 ranges.push([Math.max(97, start) [all...] |
H A D | prettify.min.js | 15 for(var i=inverse?1:0,n=charsetParts.length;i<n;++i){var p=charsetParts[i];if(/\\[bdsw]/i.test(p)){out.push(p);}else{var start=decodeEscape(p);var end;if(i+2<n&&'-'===charsetParts[i+1]){end=decodeEscape(charsetParts[i+2]);i+=2;}else{end=start;} 16 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]);}}}}
|
/httpd/modules/proxy/ |
H A D | ajp_msg.c | 502 apr_size_t start; local 506 start = msg->pos; 508 if ((status != APR_SUCCESS) || (size + start > msg->max_size)) { 515 *rvalue = (const char *)(msg->buf + start); 532 apr_size_t start; local 537 start = msg->pos; 539 if ((status != APR_SUCCESS) || (size + start > msg->max_size)) { 544 *rvalue = msg->buf + start;
|
/httpd/build/ |
H A D | NWGNUscripts.inc | 1 # Include for creating start/stop/restart NCF scripts. 6 @echo $(DL)# NCF to start Apache 2.x in own address space$(DL)> $@ 16 @echo $(DL)# NCF to start Apache 2.x in own address space$(DL)> $@
|
H A D | NWGNUtail.inc | 289 @echo $(DL)start $(NLM_ENTRY_SYM)$(DL)>> $(@:.opt=.def)
|
/httpd/modules/ssl/ |
H A D | ssl_ct_util.h | 71 const unsigned char **start,
|
H A D | ssl_ct_util.c | 629 const unsigned char **start) 635 *start = *mem; 643 const unsigned char **start, apr_size_t *len) 652 rv = read_fixed_bytes(mem, avail, *len, start); 627 read_fixed_bytes(const unsigned char **mem, apr_size_t *avail, apr_size_t len, const unsigned char **start) argument 642 ctutil_read_var_bytes(const unsigned char **mem, apr_size_t *avail, const unsigned char **start, apr_size_t *len) argument
|
H A D | ssl_engine_kernel.c | 1814 "%s: Handshake: start", MODSSL_LIBRARY_NAME); 2328 unsigned char *start; local 2381 start = data; 2387 *start = (unsigned char)length; 2388 ++start; 2389 memcpy(start, string, length * sizeof(unsigned char)); 2390 start += length;
|
/httpd/modules/filters/ |
H A D | mod_ratelimit.c | 250 b->start = 0; 266 b->start = 0;
|