OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:unzFile
(Results
1 - 6
of
6
) sorted by null
/external/zlib/contrib/minizip/
unzip.h
68
typedef unzFile__ *
unzFile
;
70
typedef voidp
unzFile
;
166
extern
unzFile
ZEXPORT unzOpen OF((const char *path));
167
extern
unzFile
ZEXPORT unzOpen64 OF((const void *path));
174
Else, the return value is a
unzFile
Handle, usable with other function
184
extern
unzFile
ZEXPORT unzOpen2 OF((const char *path,
191
extern
unzFile
ZEXPORT unzOpen2_64 OF((const void *path,
198
extern int ZEXPORT unzClose OF((
unzFile
file));
205
extern int ZEXPORT unzGetGlobalInfo OF((
unzFile
file,
208
extern int ZEXPORT unzGetGlobalInfo64 OF((
unzFile
file
[
all
...]
unzip.c
581
Else, the return value is a
unzFile
Handle, usable with other function
584
local
unzFile
unzOpenInternal (const void *path,
759
unzGoToFirstFile((
unzFile
)s);
761
return (
unzFile
)s;
765
extern
unzFile
ZEXPORT unzOpen2 (const char *path,
778
extern
unzFile
ZEXPORT unzOpen2_64 (const void *path,
793
extern
unzFile
ZEXPORT unzOpen (const char *path)
798
extern
unzFile
ZEXPORT unzOpen64 (const void *path)
808
extern int ZEXPORT unzClose (
unzFile
file)
828
extern int ZEXPORT unzGetGlobalInfo64 (
unzFile
file, unz_global_info64* pglobal_info
[
all
...]
miniunz.c
222
unzFile
uf;
300
unzFile
uf;
464
unzFile
uf;
500
unzFile
uf;
538
unzFile
uf=NULL;
/external/collada/include/dae/
daeZAEUncompressHandler.h
28
unzFile
mZipFile;
101
bool extractArchive(
unzFile
zipFile, const std::string& destDir);
106
bool extractFile(
unzFile
zipFile, const std::string& destDir);
/external/chromium/chrome/common/
zip.cc
24
static bool ExtractCurrentFile(
unzFile
zip_file,
168
unzFile
zip_file = unzOpen(src_file_str.c_str());
171
unzFile
zip_file = unzOpen2(src_file_str.c_str(), &zip_funcs);
/external/collada/src/dae/
daeZAEUncompressHandler.cpp
149
bool daeZAEUncompressHandler::extractArchive(
unzFile
zipFile, const std::string& destDir )
184
bool daeZAEUncompressHandler::extractFile(
unzFile
zipFile, const std::string& destDir )
261
unzFile
zipFile = unzOpen(filePath.c_str());
Completed in 1213 milliseconds