Searched defs:end (Results 1 - 25 of 27) sorted by relevance

12

/httpd/modules/filters/
H A Dmod_data.c76 char *end; local
96 end = strchr(charset, ' ');
97 if (end) {
98 *end++ = 0;
H A Dmod_request.c358 char *end = NULL; local
360 if (APR_SUCCESS != apr_strtoff(&(conf->keep_body), arg, &end, 10)
361 || conf->keep_body < 0 || *end) {
H A Dmod_substitute.c395 * that to the end of what we'll be passing.
419 * ap_pass_brigade anyway at the end of the loop.
458 * add the split bucket to the end, flatten the whole
656 char *end; local
659 rv = apr_strtoff(&max, arg, &end, 10);
661 if ((*end == 'K' || *end == 'k') && !end[1]) {
664 else if ((*end == 'M' || *end
[all...]
H A Dmod_proxy_html.c73 unsigned int end; member in struct:__anon166
724 ret->end = offs+pmatch[0].rm_eo;
742 const char *end; local
753 if (end = ap_strchr_c(start+2, '}'), end == NULL)
758 after = end+1;
763 var = apr_pstrndup(r->pool, start+2, end-start-2);
768 replacement = apr_pstrndup(r->pool, delim+1, end-delim-1);
979 consume_buffer(ctxt, buf+m->end, bytes-m->end,
[all...]
/httpd/server/
H A Dapreq_param.c220 apreq_param_t **const end = elt + arr->nelts; local
224 while (elt < end) {
H A Dapreq_parser_header.c62 struct iovec vec[APREQ_DEFAULT_NELTS], *iov, *end; local
86 end = apr_array_push(&arr);
87 s = apr_bucket_read(e, (const char **)&end->iov_base,
93 end->iov_len = len;
139 while (iov <= end) {
H A Dapreq_util.c97 const char *end = hay + hlen; local
101 len = end - hay;
195 const unsigned char *end = s + slen; local
199 while (s < end) {
247 const unsigned char *end = s + slen; local
249 for (; s < end; ++s) {
358 const char *end = src + *slen; local
360 for (; s < end; ++d, ++s) {
368 if (s + 2 < end && apr_isxdigit(s[1]) && apr_isxdigit(s[2])) {
372 else if (s + 5 < end
434 const char *end = s + slen; local
[all...]
H A Dutil_filter.c163 int start, end; local
165 end = node->nchildren - 1;
166 while (end >= start) {
167 int middle = (end + start) / 2;
174 end = middle - 1;
180 if (end < start) {
375 int start, end; local
377 end = node->nchildren - 1;
378 while (end >= start) {
379 int middle = (end
[all...]
H A Dprotocol.c225 * against APR_ASCII_LF at the end of the loop if bb only contains
310 /* Just copy the rest of the data to the end of the old buffer. */
325 /* Now NUL-terminate the string at the end of the line;
578 * We skip empty lines because browsers have to tack a CRLF on to the end
604 * buffer before finding the end-of-line. This is only going to
755 const char *end = ap_strchr_c(field, ':'); local
756 if (end == NULL || end - field > LOG_NAME_MAX_LEN)
758 return end - field;
794 * finding the end
[all...]
H A Dlog.c242 * the childs stdin. The write-end of the pipe will be placed in
420 * keep open the writing end of the pipe that this one uses
497 char *end; local
500 end = apr_cpystrn(buf, arg, buflen);
501 return end - buf;
/httpd/modules/loggers/
H A Dmod_log_forensic.c144 char *end; member in struct:hlog
175 h->pos = log_escape(h->pos, h->end, key);
177 h->pos = log_escape(h->pos, h->end, value);
210 h.end = h.log+h.count;
216 h.pos = log_escape(h.pos, h.end, r->the_request);
220 ap_assert(h.pos < h.end);
/httpd/modules/mappers/
H A Dmod_vhost_alias.c189 /* do we end here? */
266 const char *start, *end; local
325 end = dots[ndots]; /* ptr to the character after the last one */
329 end = start+1;
334 end = dots[N];
341 end = dots[ndots-N+1];
345 if (M > end - start) {
347 end = start+1;
352 end = start+1;
357 start = end
[all...]
H A Dmod_negotiation.c451 char *end; local
473 for (end = cp;
474 (*end && *end != '\n' && *end != '\r' && *end != '\"');
475 end++);
478 for (end = cp; (*end && !apr_isspace(*end)); en
[all...]
/httpd/modules/ssl/
H A Dssl_ct_log_config.c170 const char *end; local
173 val = apr_strtoi64(time_str, (char **)&end, 10);
174 if (errno || *end != '\0') {
H A Dssl_ct_util.c68 const char *end = memchr(ch, '\n', last - ch); local
71 if (!end) {
72 end = last + 1;
74 while (apr_isspace(*ch) && ch < end) {
77 if (ch < end) {
78 const char *tmpend = end - 1;
88 ch = end + 1;
/httpd/modules/http/
H A Dbyterange_filter.c74 apr_off_t end; member in struct:indexes_t
141 apr_off_t number, start, end; local
164 end = clength - 1;
176 end = number;
177 if (start > end) {
182 end = clength - 1;
192 oend = end;
207 if (end >= clength) {
208 end = clength - 1;
214 oend = end;
289 copy_brigade_range(apr_bucket_brigade *bb, apr_bucket_brigade *bbout, apr_off_t start, apr_off_t end) argument
561 char *end; local
[all...]
H A Dhttp_protocol.c1492 char *end; local
1495 && apr_strtoi64(r->status_line, &end, 10) == r->status
1496 && (end - 3) == r->status_line
H A Dhttp_filters.c819 char *end; local
824 || apr_strtoi64(r->status_line, &end, 10) != r->status
825 || (end - 3) != r->status_line
1284 * zero and that gets put in the headers, and we end up sending a
1501 * If an error occurs on input, we force an end to keepalive.
1578 * Returns 0 on End-of-body, -1 on error or premature chunk end.
H A Dmod_mime.c494 const char *end, apr_size_t *len)
496 while ((start < end) && apr_isspace(*start)) {
499 while ((end > start) && apr_isspace(*(end - 1))) {
500 end--;
503 *len = end - start;
505 return apr_pstrmemdup(p, start, end - start);
493 zap_sp_and_dup(apr_pool_t *p, const char *start, const char *end, apr_size_t *len) argument
/httpd/support/
H A Dfirehose.c65 apr_time_t end; member in struct:file_rec
155 * Help the long suffering end user.
227 * Process the end of the fragment body.
249 if (APR_SUCCESS == (status = apr_file_mtime_set(nfrom, file->end, pool))) {
261 nfrom, file->end, &status);
330 file->end = header->timestamp;
434 const char *end = str + len; local
488 if (str != end) {
620 /* an empty header means end-of-connection */
H A Dhtcacheclean.c281 char *end = strrchr(name, '/'); local
282 while (end) {
283 *end = 0;
304 end = strrchr(name, '/');
1436 char *end; local
1499 rv = apr_strtoff(&max, arg, &end, 10);
1501 if ((*end == 'K' || *end == 'k') && !end[1]) {
1504 else if ((*end
[all...]
/httpd/modules/test/
H A Dmod_policy.c204 const char *end = ap_strchr_c(type, ';'); local
205 if (end) {
206 type = apr_pstrmemdup(f->r->pool, type, end - type);
/httpd/modules/proxy/
H A Dmod_proxy.c482 /* We reach the end of the uri before the end of "alias_fakename"
503 * "short-circuiting"... i.e. translate_names will end when the first
554 const char *end; local
563 end = ap_strchr_c(start+2, '}');
564 if (end == NULL) {
568 var = apr_pstrmemdup(r->pool, start+2, end-(start+2));
574 proxy_interpolate(r, end+1), NULL);
578 proxy_interpolate(r, end+1), NULL);
969 char *end; local
1124 char *end; local
[all...]
H A Dmod_proxy_http.c224 /* add empty line at the end of the headers */
282 * Append the end-of-chunk CRLF
438 * back end since they would in part be interpreted
1148 char *value, *end; local
1227 for (end = &value[strlen(value)-1]; end > value && apr_isspace(*end); --end)
1228 *end = '\0';
1544 * ap_http_filter to know where to end
[all...]
/httpd/modules/lua/
H A Dlua_request.c354 char *start = 0, *end = 0, *crlf = 0; local
368 start = end
374 end = ap_lua_binstrstr(crlf, (size - (crlf - data)), multipart, len);
375 if (end == NULL) break;
378 vlen = end - crlf - 8;

Completed in 94 milliseconds

12