OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:zip_functions
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/chrome/test/chromedriver/chrome/
zip_internal.cc
280
zlib_filefunc_def
zip_functions
;
local
281
zip_functions
.zopen_file = OpenZipBuffer;
282
zip_functions
.zread_file = ReadZipBuffer;
283
zip_functions
.zwrite_file = WriteZipBuffer;
284
zip_functions
.ztell_file = GetOffsetOfZipBuffer;
285
zip_functions
.zseek_file = SeekZipBuffer;
286
zip_functions
.zclose_file = CloseZipBuffer;
287
zip_functions
.zerror_file = GetErrorOfZipBuffer;
288
zip_functions
.opaque = static_cast<void*>(buffer);
289
return unzOpen2(NULL, &
zip_functions
);
[
all
...]
/external/chromium_org/third_party/zlib/google/
zip_internal.cc
280
zlib_filefunc_def
zip_functions
;
local
281
zip_functions
.zopen_file = OpenZipBuffer;
282
zip_functions
.zread_file = ReadZipBuffer;
283
zip_functions
.zwrite_file = WriteZipBuffer;
284
zip_functions
.ztell_file = GetOffsetOfZipBuffer;
285
zip_functions
.zseek_file = SeekZipBuffer;
286
zip_functions
.zclose_file = CloseZipBuffer;
287
zip_functions
.zerror_file = GetErrorOfZipBuffer;
288
zip_functions
.opaque = static_cast<void*>(buffer);
289
return unzOpen2(NULL, &
zip_functions
);
[
all
...]
Completed in 83 milliseconds