Searched refs:format (Results 1 - 23 of 23) sorted by relevance

/httpd/modules/cache/
H A Dcache_socache_common.h37 /* Indicates the format of the header struct stored on-disk. */
38 apr_uint32_t format; member in struct:__anon80
H A Dcache_disk_common.h44 /* Indicates the format of the header struct stored on-disk. */
45 apr_uint32_t format; member in struct:__anon79
H A Dmod_cache_socache.c44 * If format #1 (Contains a list of Vary Headers):
47 * re-read in key (must be format #2)
50 * apr_uint32_t format;
55 * cache_socache_info_t (first sizeof(apr_uint32_t) bytes is the format)
437 apr_uint32_t format; local
509 /* read the format from the cache file */
510 memcpy(&format, sobj->buffer, sizeof(format));
511 slider = sizeof(format);
513 if (format
821 apr_uint32_t format = CACHE_SOCACHE_VARY_FORMAT_VERSION; local
[all...]
H A Dmod_cache_disk.c38 * If format #1 (Contains a list of Vary Headers):
41 * re-read in <hash>.header (must be format #2)
45 * apr_uint32_t format;
50 * disk_cache_info_t (first sizeof(apr_uint32_t) bytes is the format)
405 apr_uint32_t format; local
454 /* read the format from the cache file */
455 len = sizeof(format);
456 apr_file_read_full(dobj->vary.fd, &format, len, &len);
458 if (format == VARY_FORMAT_VERSION) {
488 else if (format !
973 apr_uint32_t format = VARY_FORMAT_VERSION; local
[all...]
/httpd/support/
H A Dhttxt2dbm.c39 static const char *format; variable
84 "Usage: %s [-v] [-f format] -i SOURCE_TXT -o OUTPUT_DBM" NL
189 format = NULL;
226 if (format) {
231 format = apr_pstrdup(pool, opt_arg);
270 if (!format) {
271 format = "default";
275 apr_file_printf(errfile, "DBM Format: %s" NL, format);
297 rv = apr_dbm_open_ex(&outdbm, format, output, APR_DBM_RWCREATE,
303 format);
[all...]
H A Dsuexec.c149 __attribute__((format(printf,1,2)));
151 __attribute__((format(printf,1,2)));
153 __attribute__((format(printf,2,0)));
H A Dhtcacheclean.c415 apr_uint32_t format; local
446 len = sizeof(format);
447 if (apr_file_read_full(fd, &format, len, &len)
449 if (format == DISK_FORMAT_VERSION) {
752 apr_uint32_t format; local
763 len = sizeof(format);
764 if (apr_file_read_full(fd, &format, len,
766 if (format == DISK_FORMAT_VERSION) {
796 else if (format == VARY_FORMAT_VERSION) {
817 /* We didn't recognise the format, kil
[all...]
/httpd/modules/lua/test/
H A Dmoonunit.lua32 print(("%-39s \27[32mpass\27[39m"):format("[" .. name .. "]"))
34 print(("%-39s \27[31mFAIL\27[39m %s"):format("[" .. name .. "]", err))
43 print(("%-39s FAIL %s"):format("[" .. v .. "]",
/httpd/modules/filters/
H A Dregexp.h73 __attribute__((format(printf,2,3)));
/httpd/modules/loggers/
H A Dmod_log_config.c27 * TransferLog fn Logs transfers to fn in standard log format, unless
28 * a custom format is set with LogFormat
29 * LogFormat format Set a log format from TransferLog files
30 * CustomLog fn format
31 * Log to file fn with format given by the format
36 * named files, in the appropriate format.
50 * LogFormat "... custom format ..."
57 * with the "... custom format
263 apr_array_header_t *format; member in struct:__anon198
1133 apr_array_header_t *format; local
1446 const char *format; local
[all...]
H A Dmod_journald.c79 const char *format, int len, ...)
83 iov->iov_base = apr_pvsprintf(pool, format, ap);
78 iovec_add_entry(apr_pool_t *pool, struct iovec *iov, const char *format, int len, ...) argument
/httpd/modules/lua/test/htdocs/
H A Dtest.lua22 r:puts(s:format(k, v))
28 r:puts(s:format(k))
80 r:puts(("%s: %s\n"):format(name, tostring(r[name])))
/httpd/include/
H A Dutil_filter.h325 * @param fmt The format string. If NULL defaults to "ap_pass_brigade returned"
326 * @param ... The arguments to use to fill out the format string
336 __attribute__((format(printf,3,4)));
593 * Output data to the filter in printf format
596 * @param fmt The format string
597 * @param ... The arguments to use to fill out the format string
603 __attribute__((format(printf,3,4)));
H A Dhttp_log.h112 * APLOGNO() should be used at the start of the format string passed
323 * and ap_log_perror use a printf style format string to build the log message.
325 * such as the request-URI or request header fields, within the format
327 * attack and other messy behavior. Instead, use a simple format string
333 * request or connection. This uses a printf-like format to log messages
341 * @param fmt The format string
351 * the format string. Doing so makes the server vulnerable to a
353 * simple format string like "%s", followed by the string containing the
375 __attribute__((format(printf,7,8)));
381 * format t
[all...]
H A Dhttp_protocol.h427 * Output data to the client in a printf format
429 * @param fmt The format string
430 * @param vlist The arguments to use to fill out the format string
436 * Output data to the client in a printf format
438 * @param fmt The format string
439 * @param ... The arguments to use to fill out the format string
443 __attribute__((format(printf,2,3)));
H A Dhttp_core.h217 * address, it will be returned in URL format (e.g., "[fe80::1]").
668 /* array of ap_errorlog_format_item for error log format string */
870 /** message format */
871 const char *format; member in struct:ap_errorlog_info
931 * @param tag the new format specifier (i.e. the letter after the %)
/httpd/server/
H A Dapreq_cookie.c432 /* The format string must be large enough to accomodate all
439 char format[128] = "%s=%s"; local
440 char *f = format + strlen(format);
483 return apr_snprintf(buf, len, format, c->v.name, c->v.data,
522 return apr_snprintf(buf, len, format, c->v.name, c->v.data, version,
H A Dlog.c850 * This is used if no error log format is defined and during startup.
1139 info.format = fmt;
1144 /* XXX: potential optimization: format common prefixes only once */
/httpd/modules/ssl/
H A Dssl_private.h512 * are used to store private keys in raw DER format (serialized OpenSSL
932 X509 *cert, const char *format, ...)
933 __attribute__((format(printf,8,9)));
937 const char *format, ...)
938 __attribute__((format(printf,7,8)));
942 const char *format, ...)
943 __attribute__((format(printf,7,8)));
H A Dssl_engine_log.c49 { "*no start line*", "Bad file contents or format - or even just a forgotten SSLCertificateKeyFile?" },
119 apr_pool_t *p, X509 *cert, const char *format,
126 apr_vsnprintf(buf, sizeof buf, format, 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
H A Dssl_engine_vars.c347 #define MKTIMESTR(format, tmfield) \
349 result = apr_psprintf(p, format, tm.tmfield); \
/httpd/modules/arch/netware/
H A Dmod_nw_ssl.c367 sNWTLSOpts.TrustedRootList = certarray; /* array of certs in UNICODE format */
1098 #define MKTIMESTR(format, tmfield) \
1100 result = apr_psprintf(p, format, tm.tmfield); \
/httpd/modules/mappers/
H A Dmod_rewrite.c440 __attribute__((format(printf,4,5)));

Completed in 1045 milliseconds