Lines Matching full:int
32 int OpenArchive(ZipArchiveHandle &handle, const char *path) in OpenArchive()
42 int OpenArchiveFile(ZipArchiveHandle &handle, FILE *fp) in OpenArchiveFile()
52 int CloseArchive(ZipArchiveHandle &handle) in CloseArchive()
58 int err = unzClose(handle); in CloseArchive()
66 int CloseArchiveFile(ZipArchiveHandle &handle) in CloseArchiveFile()
72 int err = unzCloseFile(handle); in CloseArchiveFile()
80 int GetGlobalFileInfo(ZipArchiveHandle &handle, GlobalStat *gstat) in GetGlobalFileInfo()
82 int err = unzGetGlobalInfo(handle, &gstat->ginfo); in GetGlobalFileInfo()
90 int GoToNextFile(ZipArchiveHandle &handle) in GoToNextFile()
92 int err = unzGoToNextFile(handle); in GoToNextFile()
100 int LocateFile(ZipArchiveHandle &handle, const char *filename) in LocateFile()
102 int err = unzLocateFile2(handle, filename, 0); in LocateFile()
110 int GetCurrentFileInfo(ZipArchiveHandle &handle, EntryFileStat *entry) in GetCurrentFileInfo()
112 int err = unzGetCurrentFileInfo(handle, &entry->file_stat, nullptr, 0, nullptr, 0, nullptr, 0); in GetCurrentFileInfo()
120 int OpenCurrentFile(ZipArchiveHandle &handle) in OpenCurrentFile()
122 int err = unzOpenCurrentFile(handle); in OpenCurrentFile()
135 int CloseCurrentFile(ZipArchiveHandle &handle) in CloseCurrentFile()
137 int err = unzCloseCurrentFile(handle); in CloseCurrentFile()
145 int ExtractToMemory(ZipArchiveHandle &handle, void *buf, size_t buf_size) in ExtractToMemory()
147 int size = unzReadCurrentFile(handle, buf, buf_size); in ExtractToMemory()
156 int CreateOrAddFileIntoZip(const char *zipname, const char *filename, const void *pbuf, size_t buf_… in CreateOrAddFileIntoZip()
157 int level) in CreateOrAddFileIntoZip()
165 int success = ZIPARCHIVE_OK; in CreateOrAddFileIntoZip()
166 int err = zipOpenNewFileInZip(zfile, filename, nullptr, nullptr, 0, nullptr, 0, nullptr, in CreateOrAddFileIntoZip()