Home
last modified time | relevance | path

Searched refs:outzip (Results 1 – 10 of 10) sorted by relevance

/dports/graphics/pstoedit/pstoedit-3.70/src/
H A Ddrvpptx.cpp456 outzip(NIL) in derivedConstructor()
546 errmessage += zip_strerror(outzip) ; in ~drvPPTX()
560 errmessage += zip_strerror(outzip) ; in ~drvPPTX()
692 if (zip_close(outzip) == -1) { in ~drvPPTX()
696 errmessage += zip_strerror(outzip) ; in ~drvPPTX()
713 errmessage += zip_strerror(outzip) ; in create_pptx_file()
726 errmessage += zip_strerror(outzip) ; in create_pptx_file()
740 if (outzip == NULL) { in create_pptx()
865 errmessage += zip_strerror(outzip) ; in close_page()
1745 errmessage += zip_strerror(outzip); in show_image()
[all …]
H A Ddrvpptx.h68 struct zip * outzip; // pptx file to generate (zip format) variable
/dports/textproc/sigil/Sigil-1.8.0/src/Resource_Files/plugin_launchers/python/
H A Depub_utils.py80 outzip = zipfile.ZipFile(os.fsdecode(epub_filepath), 'w')
84 outzip.write(os.path.join(book_path, 'mimetype'), 'mimetype', zipfile.ZIP_STORED)
90 outzip.write(filepath, file, zipfile.ZIP_DEFLATED)
91 outzip.close()
/dports/deskutils/foliate/foliate-2.6.3/src/assets/KindleUnpack/
H A Dunpack_structure.py155 self.outzip = zipfile.ZipFile(pathof(bname), 'w')
164 self.outzip.writestr(nzinfo, mimetype)
165 self.zipUpDir(self.outzip,self.k8dir,'META-INF')
166 self.zipUpDir(self.outzip,self.k8dir,'OEBPS')
167 self.outzip.close()
/dports/archivers/zip/zip30/
H A Dzipcloak.c324 FILE *inzip, *outzip; /* input and output zip files */ local
620 if ((y = tempzf = outzip = fdopen(yd, FOPW_TMP)) == NULL) {
625 if ((y = tempzf = outzip = fopen(tempzip = tempname(zipfile), FOPW)) == NULL) {
692 if ((start_offset = zftello(outzip)) == (zoff_t)-1)
700 if ((length = zftello(outzip)) == (zoff_t)-1)
709 if (fclose(outzip)) ziperr(ZE_TEMP, tempzip);
/dports/print/py-relatorio/relatorio-0.10.0/relatorio/templates/
H A Dopendocument.py1122 self.outzip = None
1130 self.outzip = zipfile.ZipFile(
1151 self.outzip.writestr(f_info, self.inzip.read(f_info.filename))
1153 writer = _ZipWriteSplitStream(self.outzip, self.chunksize)
1161 self.outzip.writestr(manifest_info, str(self.manifest))
1163 self.outzip.close()
1169 if self.outzip and path not in self.outzip.namelist():
1171 self.outzip.writestr(path, content)
/dports/textproc/sigil/Sigil-1.8.0/src/Resource_Files/python3lib/
H A Drepomanager.py266 outzip = zipfile.ZipFile(pathof(epub_filepath), mode='w')
269outzip.write(pathof(os.path.join(foldpath, 'mimetype')), pathof('mimetype'), zipfile.ZIP_STORED)
276 outzip.write(pathof(filepath),pathof(file),zipfile.ZIP_DEFLATED)
277 outzip.close()
/dports/games/wxlauncher/wxLauncher-release-0.10.0/scripts/
H A Donlinehelpmaker.py533 outzip = zipfile.ZipFile(options.outfile, mode="w", compression=zipfile.ZIP_DEFLATED)
540 outzip.write(full_filename, arcname)
542 outzip.close()
/dports/games/diaspora/Diaspora_R1_Linux/Diaspora/wxlauncher/scripts/
H A Donlinehelpmaker.py531 outzip = zipfile.ZipFile(options.outfile, mode="w", compression=zipfile.ZIP_DEFLATED)
538 outzip.write(full_filename, arcname)
540 outzip.close()
/dports/science/openbabel/openbabel-3.1.1/src/
H A Dobconversion.cpp413 …bool OBConversion::SetInAndOutFormats(const char* inID, const char* outID, bool inzip, bool outzip) in SetInAndOutFormats() argument
415 return SetInFormat(inID, inzip) && SetOutFormat(outID, outzip); in SetInAndOutFormats()
419 bool OBConversion::SetInAndOutFormats(OBFormat* pIn, OBFormat* pOut, bool inzip, bool outzip) in SetInAndOutFormats() argument
421 return SetInFormat(pIn, inzip) && SetOutFormat(pOut, outzip); in SetInAndOutFormats()