Home | History | Annotate | Download | only in libziparchive

Lines Matching defs:cdr

389     const CentralDirectoryRecord* cdr =
391 if (cdr->record_signature != CentralDirectoryRecord::kSignature) {
401 const off64_t local_header_offset = cdr->local_file_header_offset;
408 const uint16_t file_name_length = cdr->file_name_length;
409 const uint16_t extra_length = cdr->extra_field_length;
410 const uint16_t comment_length = cdr->comment_length;
539 const CentralDirectoryRecord *cdr =
550 data->method = cdr->compression_method;
551 data->mod_time = cdr->last_mod_date << 16 | cdr->last_mod_time;
552 data->crc32 = cdr->crc32;
553 data->compressed_length = cdr->compressed_size;
554 data->uncompressed_length = cdr->uncompressed_size;
559 const off64_t local_header_offset = cdr->local_file_header_offset;