Searched refs:start (Results 1 - 25 of 36) sorted by relevance

12

/httpd/modules/core/test/conf/
H A Dtest62.conf3 $start \
6 "Line:1-2 start at $start"
/httpd/build/rpm/
H A Dhtcacheclean.init33 # 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 Dhttpd.init33 # 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 Dapachectl.in80 start|stop|restart|graceful|graceful-stop)
84 startssl|sslstart|start-SSL)
87 echo and then use "apachectl start".
H A Dab.c89 /* 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 Dfirehose.c64 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 Dbyterange_filter.c73 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 Dmod_mime.c493 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 Dmod_vhost_alias.c266 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 Dapreq_param.c145 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(&param, pool, start, nlen, vlen);
181 start = qs + 1;
H A Deoc_bucket.c31 b->start = 0;
H A Dutil_filter.c163 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 Dapreq_module_cgi.c48 * 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 Deor_bucket.c54 b->start = 0;
H A Dapreq_util.c356 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 Dutil.c338 * 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 Dprettify.js50 * 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 Dprettify.min.js15 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 Dajp_msg.c502 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 DNWGNUscripts.inc1 # 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 DNWGNUtail.inc289 @echo $(DL)start $(NLM_ENTRY_SYM)$(DL)>> $(@:.opt=.def)
/httpd/modules/ssl/
H A Dssl_ct_util.h71 const unsigned char **start,
H A Dssl_ct_util.c629 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 Dssl_engine_kernel.c1814 "%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 Dmod_ratelimit.c250 b->start = 0;
266 b->start = 0;

Completed in 5091 milliseconds

12