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

Lines Matching refs:file_info

891     unz_file_info64 file_info;
916 if (unz64local_getShort(&s->z_filefunc, s->filestream,&file_info.version) != UNZ_OK)
919 if (unz64local_getShort(&s->z_filefunc, s->filestream,&file_info.version_needed) != UNZ_OK)
922 if (unz64local_getShort(&s->z_filefunc, s->filestream,&file_info.flag) != UNZ_OK)
925 if (unz64local_getShort(&s->z_filefunc, s->filestream,&file_info.compression_method) != UNZ_OK)
928 if (unz64local_getLong(&s->z_filefunc, s->filestream,&file_info.dosDate) != UNZ_OK)
931 unz64local_DosDateToTmuDate(file_info.dosDate,&file_info.tmu_date);
933 if (unz64local_getLong(&s->z_filefunc, s->filestream,&file_info.crc) != UNZ_OK)
938 file_info.compressed_size = uL;
942 file_info.uncompressed_size = uL;
944 if (unz64local_getShort(&s->z_filefunc, s->filestream,&file_info.size_filename) != UNZ_OK)
947 if (unz64local_getShort(&s->z_filefunc, s->filestream,&file_info.size_file_extra) != UNZ_OK)
950 if (unz64local_getShort(&s->z_filefunc, s->filestream,&file_info.size_file_comment) != UNZ_OK)
953 if (unz64local_getShort(&s->z_filefunc, s->filestream,&file_info.disk_num_start) != UNZ_OK)
956 if (unz64local_getShort(&s->z_filefunc, s->filestream,&file_info.internal_fa) != UNZ_OK)
959 if (unz64local_getLong(&s->z_filefunc, s->filestream,&file_info.external_fa) != UNZ_OK)
967 lSeek+=file_info.size_filename;
971 if (file_info.size_filename<fileNameBufferSize)
973 *(szFileName+file_info.size_filename)='\0';
974 uSizeRead = file_info.size_filename;
979 if ((file_info.size_filename>0) && (fileNameBufferSize>0))
989 if (file_info.size_file_extra<extraFieldBufferSize)
990 uSizeRead = file_info.size_file_extra;
1002 if ((file_info.size_file_extra>0) && (extraFieldBufferSize>0))
1006 lSeek += file_info.size_file_extra - (uLong)uSizeRead;
1009 lSeek += file_info.size_file_extra;
1012 if ((err==UNZ_OK) && (file_info.size_file_extra != 0))
1017 lSeek -= file_info.size_file_extra;
1027 while(acc < file_info.size_file_extra)
1043 if(file_info.uncompressed_size == MAXU32)
1045 if (unz64local_getLong64(&s->z_filefunc, s->filestream,&file_info.uncompressed_size) != UNZ_OK)
1049 if(file_info.compressed_size == MAXU32)
1051 if (unz64local_getLong64(&s->z_filefunc, s->filestream,&file_info.compressed_size) != UNZ_OK)
1062 if(file_info.disk_num_start == MAXU32)
1083 if (file_info.size_file_comment<commentBufferSize)
1085 *(szComment+file_info.size_file_comment)='\0';
1086 uSizeRead = file_info.size_file_comment;
1099 if ((file_info.size_file_comment>0) && (commentBufferSize>0))
1102 lSeek+=file_info.size_file_comment - uSizeRead;
1105 lSeek+=file_info.size_file_comment;
1109 *pfile_info=file_info;