Lines Matching defs:format

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..." to virtual_only _AND_ using
69 * log format, e.g. to log hosts along with UA:
77 * %...b: bytes sent, excluding HTTP headers in CLF format, i.e. a '-'
92 * %...{format}p: the canonical port for the server, or the actual local
95 * %...{format}P: the process ID or thread ID of the child/thread that
100 * %...t: time, in common log format time format
101 * %...{format}t: The time, in the form given by format, which should
102 * be in strftime(3) format.
223 * If a default log format is given by LogFormat, store in default_format
246 * request. format might be NULL, in which case the default_format
263 apr_array_header_t *format;
748 else if (fmt_type == TIME_FMT_CUSTOM) { /* Custom format */
751 * common case where we're not using a custom format, the code
752 * for the custom format in a separate function. (That's why
758 else { /* CLF format */
833 /* bogus format */
856 int tid = 0; /* APR will format "0" anyway but an arg is needed */
860 /* APR can format a thread id in hex */
868 /* bogus format */
893 * Parsing the log format string
911 * escape in the format string.
1031 /* check for '^' + two character format first */
1133 apr_array_header_t *format;
1168 format = cls->format ? cls->format : default_format;
1170 strs = apr_palloc(r->pool, sizeof(char *) * (format->nelts));
1171 strl = apr_palloc(r->pool, sizeof(int) * (format->nelts));
1172 items = (log_format_item *) format->elts;
1182 for (i = 0; i < format->nelts; ++i) {
1186 for (i = 0; i < format->nelts; ++i) {
1194 rv = log_writer(r, cls->log_writer, strs, strl, format->nelts, len);
1263 * vhosts inherit any globally-defined format names.
1282 * Set the default logfile format, or define a nickname for a format string.
1293 * format. This syntax just defines the nickname - it doesn't actually
1294 * make the format the default.
1348 cls->format = NULL;
1351 cls->format = parse_log_string(cmd->pool, fmt, &err_string);
1407 "a file name, a custom log format string or format name, "
1414 "a log format string (see docs) and an optional format name"),
1446 const char *format;
1449 format = apr_table_get(mls->formats, mls->default_format_string);
1450 if (format) {
1451 mls->default_format = parse_log_string(p, format, &dummy);
1465 format = apr_table_get(mls->formats, cls->format_string);
1466 if (format) {
1467 cls->format = parse_log_string(p, format, &dummy);
1483 format = apr_table_get(mls->formats, cls->format_string);
1484 if (format) {
1485 cls->format = parse_log_string(p, format, &dummy);
1542 /* Next, do "physical" server, which gets default log fd and format
1662 info.format = "";