Lines Matching refs:handle
71 * Open a Zip archive from filename path, and sets handle for the file.
72 * This handle must be released by calling CloseArchive with this handle.
77 int OpenArchive(ZipArchiveHandle &handle, const char *path);
82 int CloseArchive(ZipArchiveHandle &handle);
85 * Open a Zip archive from opened file FILE* fp, and sets handle for the file.
86 * This handle must be released by calling CloseArchiveFile with this handle.
91 int OpenArchiveFile(ZipArchiveHandle &handle, FILE *fp);
98 int CloseArchiveFile(ZipArchiveHandle &handle);
106 int GetGlobalFileInfo(ZipArchiveHandle &handle, GlobalStat *gstat);
113 int GoToNextFile(ZipArchiveHandle &handle);
120 int LocateFile(ZipArchiveHandle &handle, const char *filename);
128 int GetCurrentFileInfo(ZipArchiveHandle &handle, EntryFileStat *entry);
132 * This handle must be released by calling CloseCurrentFile with this handle.
136 int OpenCurrentFile(ZipArchiveHandle &handle);
141 void GetCurrentFileOffset(ZipArchiveHandle &handle, EntryFileStat *entry);
148 int CloseCurrentFile(ZipArchiveHandle &handle);
151 * Uncompress a given zip archive represented with handle to buf of size |buf_size|.
156 int ExtractToMemory(ZipArchiveHandle &handle, void *buf, size_t buf_size);