HomeSort by relevance Sort by last modified time
    Searched refs:zip_fd (Results 1 - 6 of 6) sorted by null

  /external/chromium_org/third_party/zlib/google/
zip_internal.h 36 // Opens the file referred to by |zip_fd| for unzipping.
37 unzFile OpenFdForUnzipping(int zip_fd);
55 // Opens the file referred to by |zip_fd| for zipping. |append_flag| will be
57 zipFile OpenFdForZipping(int zip_fd, int append_flag);
zip_internal.cc 272 unzFile OpenFdForUnzipping(int zip_fd) {
274 FillFdOpenFileFunc(&zip_funcs, zip_fd);
329 zipFile OpenFdForZipping(int zip_fd, int append_flag) {
331 FillFdOpenFileFunc(&zip_funcs, zip_fd);
zip_reader.h 105 // Opens the zip file referred to by the platform file |zip_fd|.
107 bool OpenFromPlatformFile(base::PlatformFile zip_fd);
zip_reader.cc 94 bool ZipReader::OpenFromPlatformFile(base::PlatformFile zip_fd) {
98 zip_file_ = internal::OpenFdForUnzipping(zip_fd);
100 zip_file_ = internal::OpenHandleForUnzipping(zip_fd);
  /art/dex2oat/
dex2oat.cc 854 int zip_fd = -1; local
    [all...]
  /frameworks/native/cmds/installd/
commands.c 628 static void run_dexopt(int zip_fd, int odex_fd, const char* input_file_name,
641 sprintf(zip_num, "%d", zip_fd);
690 static void run_dex2oat(int zip_fd, int oat_fd, const char* input_file_name,
752 sprintf(zip_fd_arg, "--zip-fd=%d", zip_fd);
    [all...]

Completed in 131 milliseconds