Lines Matching defs:format
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;
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 != DISK_FORMAT_VERSION) {
491 dobj->vary.file, format);
973 apr_uint32_t format = VARY_FORMAT_VERSION;
975 /* If we were initially opened as a vary format, rollback
977 * vary format hints in the appropriate directory.
997 amt = sizeof(format);
998 rv = apr_file_write_full(dobj->vary.tempfd, &format, amt, NULL);
1054 disk_info.format = DISK_FORMAT_VERSION;