Searched refs:apr_pstrcat (Results 1 - 25 of 140) sorted by relevance

123456

/macosx-10.10.1/apache-793/httpd/modules/dav/main/
H A Dstd_liveprop.c92 value = apr_pstrcat(p, value ? value : "",
95 value = apr_pstrcat(p, value ? value : "",
105 value = apr_pstrcat(p, value ? value : "", "<D:baseline/>", NULL);
112 value = apr_pstrcat(p, value ? value : "", "<D:collection/>", NULL);
122 value = apr_pstrcat(p, value ? value : "", "<D:version-history/>", NULL);
125 value = apr_pstrcat(p, value ? value : "", "<D:collection/>", NULL);
128 value = apr_pstrcat(p, value ? value : "", "<D:activity/>", NULL);
/macosx-10.10.1/apache-793/httpd/server/
H A Dutil_cookies.c52 buffer = apr_pstrcat(r->pool, "Max-Age=", apr_ltoa(r->pool, maxage), ";", NULL);
56 rfc2109 = apr_pstrcat(r->pool, name, "=", val, ";", buffer,
94 buffer = apr_pstrcat(r->pool, "Max-Age=", apr_ltoa(r->pool, maxage), ";", NULL);
98 rfc2965 = apr_pstrcat(r->pool, name2, "=", val, ";", buffer,
126 const char *rfc2109 = apr_pstrcat(r->pool, name, "=;Max-Age=0;",
154 const char *rfc2965 = apr_pstrcat(r->pool, name2, "=;Max-Age=0;",
181 const char *name = apr_pstrcat(v->r->pool, v->name ? v->name : "", "=", NULL);
216 new_cookie = apr_pstrcat(v->r->pool, new_cookie, sep, next2, NULL);
/macosx-10.10.1/apache-793/httpd/modules/mappers/
H A Dmod_actions.c99 return apr_pstrcat(cmd->pool,
104 apr_pstrcat(cmd->pool, option ? "1" : "0", script, NULL));
130 return apr_pstrcat(cmd->pool, "Could not register method '", method,
205 ap_internal_redirect_handler(apr_pstrcat(r->pool, script,
H A Dmod_userdir.c286 redirect = apr_pstrcat(r->pool, prefix, user, userdir,
292 filename = apr_pstrcat(r->pool, prefix, user, userdir,
296 filename = apr_pstrcat(r->pool, userdir, "/", user, NULL);
299 redirect = apr_pstrcat(r->pool, prefix, user, dname, NULL);
308 filename = apr_pstrcat(r->pool, homedir, "/", userdir, NULL);
325 r->filename = apr_pstrcat(r->pool, filename, dname, NULL);
H A Dmod_alias.c365 found = apr_pstrcat(r->pool, found, "?",
369 found = apr_pstrcat(r->pool, found, "#",
407 found = apr_pstrcat(r->pool, alias->real, escurl, NULL);
410 found = apr_pstrcat(r->pool, alias->real, r->uri + l, NULL);
474 ret = apr_pstrcat(r->pool, ret, "?", r->args, NULL);
525 ret = apr_pstrcat(r->pool, ret, "?", r->args, NULL);
/macosx-10.10.1/apr-32/apr/apr/misc/unix/
H A Denv.c61 if (0 > putenv(apr_pstrcat(pool, envvar, "=", value, NULL)))
/macosx-10.10.1/apr-32/apr/apr/test/
H A Dtesttemp.c41 filetemplate = apr_pstrcat(p, tempdir, "/tempfileXXXXXX", NULL);
/macosx-10.10.1/apache-793/httpd/modules/metadata/
H A Dmod_expires.c243 return apr_pstrcat(p, "bad expires code, unrecognised <base> '",
263 return apr_pstrcat(p, "bad expires code, numeric value expected <num> '",
271 return apr_pstrcat(p, "bad expires code, missing <type>", NULL);
296 return apr_pstrcat(p, "bad expires code, unrecognised <type>",
331 return apr_pstrcat(cmd->pool,
345 return apr_pstrcat(cmd->pool,
499 checkmime = apr_pstrcat(r->pool, checkmime, "*", NULL);
H A Dmod_setenvif.c275 return apr_pstrcat(cmd->pool, "Missing envariable expression for ",
306 return apr_pstrcat(cmd->pool, "Missing regular expression for ",
342 return apr_pstrcat(cmd->pool, cmd->cmd->name,
351 return apr_pstrcat(cmd->pool, cmd->cmd->name,
388 return apr_pstrcat(cmd->pool, cmd->cmd->name,
412 return apr_pstrcat(cmd->pool, "Missing header-field name for ",
438 return apr_pstrcat(cmd->pool, "Missing expression for ",
H A Dmod_version.c200 return apr_pstrcat(cmd->pool, cmd->cmd->name,
279 return apr_pstrcat(cmd->pool, "unrecognized operator '", arg1, "'",
/macosx-10.10.1/apache-793/httpd/modules/aaa/
H A Dmod_authn_core.c220 return apr_pstrcat(cmd->pool, cmd->cmd->name,
227 return apr_pstrcat(cmd->pool, cmd->cmd->name,
236 return apr_pstrcat(cmd->pool, cmd->cmd->name,
241 return apr_pstrcat(cmd->pool,
249 return apr_pstrcat(cmd->pool, "The alias provider ", provider_alias,
H A Dmod_auth_form.c218 return apr_pstrcat(cmd->pool, cmd->directive->directive,
473 apr_table_setn(notes, apr_pstrcat(r->pool, authname, "-user", NULL), user);
476 apr_table_setn(notes, apr_pstrcat(r->pool, authname, "-pw", NULL), pw);
479 apr_table_setn(notes, apr_pstrcat(r->pool, authname, "-method", NULL), method);
482 apr_table_setn(notes, apr_pstrcat(r->pool, authname, "-mimetype", NULL), mimetype);
510 *user = (char *) apr_table_get(m->notes, apr_pstrcat(m->pool, authname, "-user", NULL));
513 *pw = (char *) apr_table_get(m->notes, apr_pstrcat(m->pool, authname, "-pw", NULL));
516 *method = (char *) apr_table_get(m->notes, apr_pstrcat(m->pool, authname, "-method", NULL));
519 *mimetype = (char *) apr_table_get(m->notes, apr_pstrcat(m->pool, authname, "-mimetype", NULL));
549 (unsigned char *) apr_pstrcat(
[all...]
H A Dmod_authz_owner.c72 reason = apr_pstrcat(r->pool, "could not stat file ",
136 reason = apr_pstrcat(r->pool, "could not stat file ",
H A Dmod_authz_user.c106 return apr_pstrcat(cmd->temp_pool,
/macosx-10.10.1/apache-793/httpd/modules/http/
H A Dhttp_protocol.c1083 result = apr_pstrcat(r->pool, prefix, suffix, NULL);
1086 result = apr_pstrcat(r->pool, prefix, notes, suffix, NULL);
1107 return(apr_pstrcat(p,
1113 return(apr_pstrcat(p,
1120 return(apr_pstrcat(p,
1142 return(apr_pstrcat(p,
1148 return(apr_pstrcat(p,
1154 return(apr_pstrcat(p,
1162 s1 = apr_pstrcat(p,
1172 s1 = apr_pstrcat(
[all...]
/macosx-10.10.1/apr-32/apr/apr/threadproc/win32/
H A Dproc.c259 apr_pstrcat(attr->pool,
272 apr_pstrcat(attr->pool,
286 apr_pstrcat(attr->pool,
498 apr_pstrcat(pool, "filepath_merge failed.",
522 argv0 = apr_pstrcat(pool, "\"", progname, "\"", NULL);
532 cmdline = apr_pstrcat(pool, cmdline, " \"", args[i], "\"", NULL);
535 cmdline = apr_pstrcat(pool, cmdline, " ", args[i], NULL);
554 shellcmd = apr_pstrcat(pool, "\"", shellcmd, "\"", NULL);
561 cmdline = apr_pstrcat(pool, shellcmd, " /C ", argv0, cmdline, NULL);
564 cmdline = apr_pstrcat(poo
[all...]
/macosx-10.10.1/apache-793/httpd/modules/examples/
H A Dmod_example_hooks.c367 addon = apr_pstrcat(p,
382 trace = apr_pstrcat(p, sofar, addon, NULL);
411 addon = apr_pstrcat(r->pool,
420 trace_copy = apr_pstrcat(r->pool, sofar, addon, NULL);
454 addon = apr_pstrcat(c->pool,
468 trace_copy = apr_pstrcat(c->pool, sofar, addon, NULL);
566 cfg->loc = apr_pstrcat(p, "DIR(", dname, ")", NULL);
652 cfg->loc = apr_pstrcat(p, "SVR(", sname, ")", NULL);
691 note = apr_pstrcat(p, "x_merge_server_config(\"", s1conf->loc, "\",\"",
840 note = apr_pstrcat(
[all...]
/macosx-10.10.1/apr-32/apr/apr/shmem/os2/
H A Dshm.c42 name = apr_pstrcat(pool, "\\SHAREMEM\\", filename, NULL);
81 name = apr_pstrcat(pool, "\\SHAREMEM\\", filename, NULL);
/macosx-10.10.1/apache-793/httpd/modules/dav/fs/
H A Dmod_dav_fs.c72 return apr_pstrcat(cmd->pool, "Invalid DAVLockDB path ",
/macosx-10.10.1/apache-793/httpd/modules/dav/lock/
H A Dmod_dav_lock.c73 return apr_pstrcat(cmd->pool, "Invalid DAVGenericLockDB path ",
/macosx-10.10.1/apr-32/apr/apr/file_io/unix/
H A Dtempdir.c27 char *path = apr_pstrcat(p, temp_dir, "/apr-tmp.XXXXXX", NULL);
/macosx-10.10.1/apache-793/httpd/support/
H A Dhtcacheclean.c286 nextpath = apr_pstrcat(p, path, "/", name, NULL);
293 nextpath = apr_pstrcat(p, path, "/", apr_pstrndup(p, name, vary
330 nextpath = apr_pstrcat(p, path, "/", basename, NULL);
367 nextpath = apr_pstrcat(p, path, "/", basename, CACHE_HEADER_SUFFIX, NULL);
378 nextpath = apr_pstrcat(p, path, "/", basename, CACHE_DATA_SUFFIX, NULL);
431 if (list_urls(apr_pstrcat(p, path, "/", info.name, NULL), pool, round)) {
442 nextpath = apr_pstrcat(p, path, "/", info.name, NULL);
476 apr_pstrcat(
532 apr_pstrcat(
628 d->basename = apr_pstrcat(
[all...]
/macosx-10.10.1/apr-32/apr-util/apr-util/dbm/
H A Dapr_dbm_sdbm.c205 *used1 = apr_pstrcat(pool, pathname, APR_SDBM_DIRFEXT, NULL);
206 *used2 = apr_pstrcat(pool, pathname, APR_SDBM_PAGFEXT, NULL);
/macosx-10.10.1/apr-32/apr-util/apr-util/test/
H A Dtestldap.c125 cert->path = apr_pstrcat (p, DIRNAME, "/", dirent.name, NULL);
131 cert->path = apr_pstrcat (p, DIRNAME, "/", dirent.name, NULL);
/macosx-10.10.1/apache-793/httpd/modules/generators/
H A Dmod_suexec.c69 return apr_pstrcat(cmd->pool, "SuexecUserGroup configured, but "

Completed in 308 milliseconds

123456