Searched refs:scratch (Results 1 - 5 of 5) sorted by relevance

/httpd/support/
H A Dhtpasswd.c282 char *scratch, cp[MAX_STRING_LEN]; local
411 scratch = cp;
412 while (apr_isspace(*scratch)) {
413 ++scratch;
416 if (!*scratch || (*scratch == '#')) {
423 colon = strchr(scratch, ':');
439 if (strcmp(user, scratch) != 0) {
/httpd/modules/generators/
H A Dmod_autoindex.c1509 apr_pool_t *scratch; local
1516 apr_pool_create(&scratch, r->pool);
1559 ap_rvputs(r, "<img src=\"", ap_escape_html(scratch, tp),
1614 ap_rvputs(r, "<img src=\"", ap_escape_html(scratch, tp),
1672 apr_pool_clear(scratch);
1675 anchor = ap_escape_html(scratch, ap_os_escape_path(scratch, t, 0));
1689 char *altclass = apr_pstrdup(scratch, ar[x]->alt);
1707 ap_escape_html(scratch,
1736 ap_escape_html(scratch, t
[all...]
/httpd/server/
H A Dlog.c720 char scratch[MAX_STRING_LEN]; local
723 ap_escape_errorlog_item(scratch, value, MAX_STRING_LEN);
724 return cpystrn(buf, scratch, buflen);
861 char scratch[MAX_STRING_LEN]; local
928 if (apr_vsnprintf(scratch, MAX_STRING_LEN, errstr_fmt, args)) {
929 len += ap_escape_errorlog_item(buf + len, scratch,
954 char scratch[MAX_STRING_LEN]; local
978 if (apr_vsnprintf(scratch, MAX_STRING_LEN, err_fmt, args)) {
979 len += ap_escape_errorlog_item(buf + len, scratch,
H A Dcore.c3869 char scratch[MAX_STRING_LEN]; local
3870 char *d = scratch;
3880 while (*s && *s != '%' && (*s != ' ' || at_start) && d < scratch + MAX_STRING_LEN) {
3914 it->arg = apr_pstrdup(p, scratch);
/httpd/modules/mappers/
H A Dmod_rewrite.c820 char *portp, *host, *url, *scratch; local
822 scratch = apr_pstrdup(r->pool, r->filename); /* our scratchpad */
825 cp = host = scratch + l + 3; /* 3 == strlen("://") */
839 url = r->filename + (cp - scratch);
848 url = r->filename + (cp - scratch);

Completed in 259 milliseconds