Searched refs:zipFile (Results 1 – 4 of 4) sorted by relevance
| /foundation/bundlemanager/bundle_framework/interfaces/kits/js/zip/include/ |
| D | zip_writer.h | 38 static zipFile InitZipFileWithFd(PlatformFile zipFilefd); 39 static zipFile InitZipFileWithFile(const FilePath &zip_file_path); 41 ZipWriter(zipFile zip_file, const FilePath &rootDir); 71 zipFile zipFile_;
|
| D | zip_internal.h | 58 zipFile OpenForZipping(const std::string &fileNameUtf8, int appendFlag); 62 zipFile OpenFdForZipping(PlatformFile zipFd, int appendFlag); 65 …zipFile zipFile, const std::string &strPath, const OPTIONS &options, const struct tm *lastModified…
|
| /foundation/bundlemanager/bundle_framework/interfaces/kits/js/zip/src/ |
| D | zip_writer.cpp | 37 bool AddFileContentToZip(zipFile zip_file, FilePath &file_path) in AddFileContentToZip() 80 …zipFile zip_file, FilePath &path, bool isDirectory, struct tm *lastModified, const OPTIONS &option… in OpenNewFileEntry() 92 bool CloseNewFileEntry(zipFile zip_file) in CloseNewFileEntry() 98 bool AddFileEntryToZip(zipFile zip_file, FilePath &relativePath, FilePath &absolutePath, const OPTI… in AddFileEntryToZip() 117 bool AddDirectoryEntryToZip(zipFile zip_file, FilePath &path, struct tm *lastModified, const OPTION… in AddDirectoryEntryToZip() 125 zipFile ZipWriter::InitZipFileWithFd(PlatformFile zipFilefd) in InitZipFileWithFd() 132 zipFile zip_file = OpenFdForZipping(zipFilefd, APPEND_STATUS_CREATE); in InitZipFileWithFd() 140 zipFile ZipWriter::InitZipFileWithFile(const FilePath &zip_file_path) in InitZipFileWithFile() 150 zipFile zip_file = OpenForZipping(zipFilePath.Value(), APPEND_STATUS_CREATE); in InitZipFileWithFile() 158 ZipWriter::ZipWriter(zipFile zip_file, const FilePath &rootDir) : zipFile_(zip_file), rootDir_(root… in ZipWriter()
|
| D | zip_internal.cpp | 254 zipFile OpenForZipping(const std::string &fileNameUtf8, int appendFlag) in OpenForZipping() 263 zipFile OpenFdForZipping(PlatformFile zipFd, int appendFlag) in OpenFdForZipping() 272 …zipFile zipFile, const std::string &strPath, const OPTIONS &options, const struct tm *lastModified… in ZipOpenNewFileInZip() argument 278 if (ZIP_OK != zipOpenNewFileInZip4(zipFile, // file in ZipOpenNewFileInZip()
|