• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.10.1/apache-793/httpd/modules/aaa/

Lines Matching refs:apr_pstrcat

218         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(r->pool, user, ":", site, NULL));
553 ap_session_set_fn(r, z, apr_pstrcat(r->pool, authname, "-" MOD_SESSION_USER, NULL), user);
554 ap_session_set_fn(r, z, apr_pstrcat(r->pool, authname, "-" MOD_SESSION_PW, NULL), pw);
555 ap_session_set_fn(r, z, apr_pstrcat(r->pool, authname, "-" MOD_AUTH_FORM_HASH, NULL), hash);
573 ap_session_get_fn(r, z, apr_pstrcat(r->pool, authname, "-" MOD_SESSION_USER, NULL), user);
576 ap_session_get_fn(r, z, apr_pstrcat(r->pool, authname, "-" MOD_SESSION_PW, NULL), pw);
579 ap_session_get_fn(r, z, apr_pstrcat(r->pool, authname, "-" MOD_AUTH_FORM_HASH, NULL), hash);
737 (unsigned char *) apr_pstrcat(r->pool, sent_user, ":", site, NULL));
862 char *basic = apr_pstrcat(r->pool, user, ":", pw, NULL);
868 apr_pstrcat(r->pool, "Basic ", base64, NULL));