Lines Matching refs:toc_entry
213 toc_entry = self._files[key]
216 return _get_data(self.archive, toc_entry)
250 toc_entry = self._files[fullpath]
254 return _get_data(self.archive, toc_entry).decode()
386 # A toc_entry is a tuple:
586 # Given a path to a Zip file and a toc_entry, return the (uncompressed) data.
587 def _get_data(archive, toc_entry):
588 datapath, compress, data_size, file_size, file_offset, time, date, crc = toc_entry
717 toc_entry = self._files[path]
720 time = toc_entry[5]
721 date = toc_entry[6]
722 uncompressed_size = toc_entry[3]
737 toc_entry = self._files[path]
741 return _get_data(self.archive, toc_entry)
753 toc_entry = self._files[fullpath]
757 modpath = toc_entry[0]
758 data = _get_data(self.archive, toc_entry)
771 modpath = toc_entry[0]