• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/zlib-1.2.3/contrib/minizip/

Lines Matching refs:file_info

594     unz_file_info file_info;
616 if (unzlocal_getShort(&s->z_filefunc, s->filestream,&file_info.version) != UNZ_OK)
619 if (unzlocal_getShort(&s->z_filefunc, s->filestream,&file_info.version_needed) != UNZ_OK)
622 if (unzlocal_getShort(&s->z_filefunc, s->filestream,&file_info.flag) != UNZ_OK)
625 if (unzlocal_getShort(&s->z_filefunc, s->filestream,&file_info.compression_method) != UNZ_OK)
628 if (unzlocal_getLong(&s->z_filefunc, s->filestream,&file_info.dosDate) != UNZ_OK)
631 unzlocal_DosDateToTmuDate(file_info.dosDate,&file_info.tmu_date);
633 if (unzlocal_getLong(&s->z_filefunc, s->filestream,&file_info.crc) != UNZ_OK)
636 if (unzlocal_getLong(&s->z_filefunc, s->filestream,&file_info.compressed_size) != UNZ_OK)
639 if (unzlocal_getLong(&s->z_filefunc, s->filestream,&file_info.uncompressed_size) != UNZ_OK)
642 if (unzlocal_getShort(&s->z_filefunc, s->filestream,&file_info.size_filename) != UNZ_OK)
645 if (unzlocal_getShort(&s->z_filefunc, s->filestream,&file_info.size_file_extra) != UNZ_OK)
648 if (unzlocal_getShort(&s->z_filefunc, s->filestream,&file_info.size_file_comment) != UNZ_OK)
651 if (unzlocal_getShort(&s->z_filefunc, s->filestream,&file_info.disk_num_start) != UNZ_OK)
654 if (unzlocal_getShort(&s->z_filefunc, s->filestream,&file_info.internal_fa) != UNZ_OK)
657 if (unzlocal_getLong(&s->z_filefunc, s->filestream,&file_info.external_fa) != UNZ_OK)
663 lSeek+=file_info.size_filename;
667 if (file_info.size_filename<fileNameBufferSize)
669 *(szFileName+file_info.size_filename)='\0';
670 uSizeRead = file_info.size_filename;
675 if ((file_info.size_filename>0) && (fileNameBufferSize>0))
685 if (file_info.size_file_extra<extraFieldBufferSize)
686 uSizeRead = file_info.size_file_extra;
695 if ((file_info.size_file_extra>0) && (extraFieldBufferSize>0))
698 lSeek += file_info.size_file_extra - uSizeRead;
701 lSeek+=file_info.size_file_extra;
707 if (file_info.size_file_comment<commentBufferSize)
709 *(szComment+file_info.size_file_comment)='\0';
710 uSizeRead = file_info.size_file_comment;
720 if ((file_info.size_file_comment>0) && (commentBufferSize>0))
723 lSeek+=file_info.size_file_comment - uSizeRead;
726 lSeek+=file_info.size_file_comment;
729 *pfile_info=file_info;