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

  /bionic/linker/tests/
linker_utils_test.cpp 70 std::string zip_path; local
73 ASSERT_FALSE(parse_zip_path("/not/a/zip/path/file.zip", &zip_path, &entry_path));
74 ASSERT_FALSE(parse_zip_path("/not/a/zip/path/file.zip!path/in/zip", &zip_path, &entry_path));
75 ASSERT_TRUE(parse_zip_path("/zip/path/file.zip!/path/in/zip", &zip_path, &entry_path));
76 ASSERT_EQ("/zip/path/file.zip", zip_path);
79 ASSERT_TRUE(parse_zip_path("/zip/path/file2.zip!/", &zip_path, &entry_path));
80 ASSERT_EQ("/zip/path/file2.zip", zip_path);
  /bionic/linker/
linker.cpp 467 std::string zip_path; local
477 if (parse_zip_path(normalized_path.c_str(), &zip_path, &entry_path)) {
478 if (realpath(zip_path.c_str(), resolved_path) == nullptr) {
479 DL_WARN("Warning: unable to resolve \"%s\": %s", zip_path.c_str(), strerror(errno));
    [all...]
  /bootable/recovery/updater/
install.cpp 517 char* zip_path; local
519 if (ReadArgs(state, argv, 2, &zip_path, &dest_path) < 0) return NULL;
526 bool success = mzExtractRecursive(za, zip_path, dest_path,
529 free(zip_path);
553 char* zip_path; local
555 if (ReadArgs(state, argv, 2, &zip_path, &dest_path) < 0) return NULL;
557 const ZipEntry* entry = mzFindZipEntry(za, zip_path);
559 printf("%s: no %s in package\n", name, zip_path);
582 free(zip_path);
589 char* zip_path; local
    [all...]

Completed in 386 milliseconds