Searched defs:ap (Results 1 - 10 of 10) sorted by relevance

/httpd/modules/ssl/
H A Dssl_engine_log.c120 va_list ap)
126 apr_vsnprintf(buf, sizeof buf, format, ap);
211 va_list ap; local
212 va_start(ap, fmt);
214 cert, fmt, ap);
215 va_end(ap);
223 va_list ap; local
224 va_start(ap, fmt);
226 cert, fmt, ap);
227 va_end(ap);
116 ssl_log_cert_error(const char *file, int line, int level, apr_status_t rv, const server_rec *s, const conn_rec *c, const request_rec *r, apr_pool_t *p, X509 *cert, const char *format, va_list ap) argument
235 va_list ap; local
[all...]
/httpd/support/
H A Dsuexec.c152 static void err_output(int is_error, const char *fmt, va_list ap)
155 static void err_output(int is_error, const char *fmt, va_list ap) argument
163 vsyslog(is_error ? LOG_ERR : LOG_INFO, fmt, ap);
192 vfprintf(log, fmt, ap);
202 va_list ap; local
204 va_start(ap, fmt);
205 err_output(1, fmt, ap); /* 1 == is_error */
206 va_end(ap);
214 va_list ap; local
216 va_start(ap, fm
[all...]
/httpd/modules/aaa/
H A Dmod_access_compat.c245 allowdeny *ap = (allowdeny *) a->elts; local
252 if (!(mmask & ap[i].limited)) {
256 switch (ap[i].type) {
258 if (apr_table_get(r->subprocess_env, ap[i].x.from)) {
264 if (!apr_table_get(r->subprocess_env, ap[i].x.from)) {
273 if (apr_ipsubnet_test(ap[i].x.ip, r->useragent_addr)) {
295 if ((gothost == 2) && in_domain(ap[i].x.from, remotehost)) {
/httpd/modules/loggers/
H A Dmod_journald.c81 va_list ap; local
82 va_start(ap, len);
83 iov->iov_base = apr_pvsprintf(pool, format, ap);
84 va_end(ap);
/httpd/server/
H A Dutil_filter.c616 va_list ap; local
618 va_start(ap, fmt);
619 res = apr_pvsprintf(r->pool, fmt, ap);
620 va_end(ap);
/httpd/modules/generators/
H A Dmod_autoindex.c885 char *ap; local
887 if ((ap = strrchr(p->apply_to, '/')) == NULL) {
888 ap = p->apply_to;
891 ap++;
896 && !ap_strcmp_match(tt, ap)) {
906 && !ap_strcasecmp_match(tt, ap)) {
H A Dmod_cgid.c389 va_list ap; local
395 va_start(ap, count);
397 vec[i].iov_base = va_arg(ap, caddr_t);
398 vec[i].iov_len = va_arg(ap, apr_size_t);
400 va_end(ap);
/httpd/modules/metadata/
H A Dmod_mime_magic.c588 va_list ap; local
593 va_start(ap, str);
594 apr_vsnprintf(buf, sizeof(buf), str, ap);
595 va_end(ap);
/httpd/modules/filters/
H A Dmod_include.c238 va_list ap; local
241 va_start(ap, fmt);
242 debug__str = apr_pvsprintf(ctx->pool, fmt, ap);
243 va_end(ap);
/httpd/modules/mappers/
H A Dmod_rewrite.c449 va_list ap; local
462 va_start(ap, fmt);
463 text = apr_pvsprintf(r->pool, fmt, ap);
464 va_end(ap);

Completed in 65 milliseconds