Lines Matching refs:central

844 	phar_zip_central_dir_file central;  in phar_zip_changed_apply_int()  local
867 memset(&central, 0, sizeof(central)); in phar_zip_changed_apply_int()
870 memcpy(central.signature, "PK\1\2", 4); in phar_zip_changed_apply_int()
871 PHAR_SET_16(central.extra_len, sizeof(perms)); in phar_zip_changed_apply_int()
885 PHAR_SET_16(central.compressed, PHAR_ZIP_COMP_DEFLATE); in phar_zip_changed_apply_int()
890 PHAR_SET_16(central.compressed, PHAR_ZIP_COMP_BZIP2); in phar_zip_changed_apply_int()
896 memcpy(central.timestamp, local.timestamp, sizeof(local.timestamp)); in phar_zip_changed_apply_int()
897 memcpy(central.datestamp, local.datestamp, sizeof(local.datestamp)); in phar_zip_changed_apply_int()
898 PHAR_SET_16(central.filename_len, entry->filename_len + (entry->is_dir ? 1 : 0)); in phar_zip_changed_apply_int()
901 general_purpose_flags = PHAR_GET_16(central.flags); in phar_zip_changed_apply_int()
902 PHAR_SET_16(central.flags, general_purpose_flags | (1 << 11)); in phar_zip_changed_apply_int()
905 PHAR_SET_32(central.offset, php_stream_tell(p->filefp)); in phar_zip_changed_apply_int()
944 PHAR_SET_32(central.uncompsize, entry->uncompressed_filesize); in phar_zip_changed_apply_int()
950 PHAR_SET_32(central.compsize, entry->uncompressed_filesize); in phar_zip_changed_apply_int()
995 PHAR_SET_32(central.compsize, entry->compressed_filesize); in phar_zip_changed_apply_int()
1003 PHAR_SET_32(central.uncompsize, entry->uncompressed_filesize); in phar_zip_changed_apply_int()
1005 PHAR_SET_32(central.compsize, entry->compressed_filesize); in phar_zip_changed_apply_int()
1015 PHAR_SET_32(central.crc32, entry->crc32); in phar_zip_changed_apply_int()
1021 …PHAR_SET_16(central.comment_len, entry->metadata_tracker.str ? ZSTR_LEN(entry->metadata_tracker.st… in phar_zip_changed_apply_int()
1032 if (sizeof(central) != php_stream_write(p->centralfp, (char *)&central, sizeof(central))) { in phar_zip_changed_apply_int()