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

  /bionic/linker/tests/
linker_utils_test.cpp 92 ASSERT_FALSE(parse_zip_path("/not/a/zip/path/file.zip", &zip_path, &entry_path));
93 ASSERT_FALSE(parse_zip_path("/not/a/zip/path/file.zip!path/in/zip", &zip_path, &entry_path));
94 ASSERT_TRUE(parse_zip_path("/zip/path/file.zip!/path/in/zip", &zip_path, &entry_path));
98 ASSERT_TRUE(parse_zip_path("/zip/path/file2.zip!/", &zip_path, &entry_path));
  /bionic/linker/
linker_utils.h 42 bool parse_zip_path(const char* input_path, std::string* zip_path, std::string* entry_path);
linker_utils.cpp 140 bool parse_zip_path(const char* input_path, std::string* zip_path, std::string* entry_path) { function
234 if (parse_zip_path(normalized_path.c_str(), &zip_path, &entry_path)) {

Completed in 79 milliseconds