/httpd/modules/cache/ |
H A D | cache_socache_common.h | 37 /* Indicates the format of the header struct stored on-disk. */ 38 apr_uint32_t format; member in struct:__anon80
|
H A D | cache_disk_common.h | 44 /* Indicates the format of the header struct stored on-disk. */ 45 apr_uint32_t format; member in struct:__anon79
|
H A D | mod_cache_disk.c | 38 * 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...] |
H A D | mod_cache_socache.c | 44 * 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...] |
/httpd/modules/ssl/ |
H A D | ssl_engine_log.c | 49 { "*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
|
/httpd/support/ |
H A D | httxt2dbm.c | 39 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 D | htcacheclean.c | 415 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/loggers/ |
H A D | mod_journald.c | 79 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
|
H A D | mod_log_config.c | 27 * 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...] |
/httpd/server/ |
H A D | apreq_cookie.c | 432 /* 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,
|
/httpd/include/ |
H A D | http_core.h | 217 * 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 %)
|