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

  /external/chromium_org/third_party/zlib/google/
zip_unittest.cc 188 const base::PlatformFile zip_fd = local
190 ASSERT_LE(0, zip_fd);
191 EXPECT_TRUE(zip::ZipFiles(src_dir, zip_file_list_, zip_fd));
192 base::ClosePlatformFile(zip_fd);
  /frameworks/native/cmds/installd/
commands.c 581 static void run_dexopt(int zip_fd, int odex_fd, const char* input_file_name,
589 sprintf(zip_num, "%d", zip_fd);
598 static void run_dex2oat(int zip_fd, int oat_fd, const char* input_file_name,
608 sprintf(zip_fd_arg, "--zip-fd=%d", zip_fd);
661 int res, zip_fd=-1, out_fd=-1; local
689 zip_fd = open(apk_path, O_RDONLY, 0);
690 if (zip_fd < 0) {
742 run_dexopt(zip_fd, out_fd, apk_path, out_path, dexopt_flags);
744 run_dex2oat(zip_fd, out_fd, apk_path, out_path, dexopt_flags);
762 close(zip_fd);
    [all...]
  /art/dex2oat/
dex2oat.cc 576 int zip_fd = -1; local
625 if (!ParseInt(zip_fd_str, &zip_fd)) {
767 if (dex_filenames.empty() && zip_fd == -1) {
771 if (!dex_filenames.empty() && zip_fd != -1) {
787 if (zip_fd != -1 && zip_location.empty()) {
    [all...]

Completed in 868 milliseconds