/bionic/linker/tests/ |
linker_utils_test.cpp | 71 std::string entry_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)); 77 ASSERT_EQ("path/in/zip", entry_path); 79 ASSERT_TRUE(parse_zip_path("/zip/path/file2.zip!/", &zip_path, &entry_path)); 81 ASSERT_EQ("", entry_path);
|
/external/google-breakpad/src/common/tests/ |
auto_tempdir.h | 79 string entry_path = path + "/" + entry->d_name; local 81 EXPECT_TRUE(lstat(entry_path.c_str(), &stats) == 0); 83 DeleteRecursively(entry_path); 85 EXPECT_TRUE(unlink(entry_path.c_str()) == 0);
|
/bionic/linker/ |
linker_utils.h | 26 bool parse_zip_path(const char* input_path, std::string* zip_path, std::string* entry_path);
|
linker_utils.cpp | 85 bool parse_zip_path(const char* input_path, std::string* zip_path, std::string* entry_path) { 112 *entry_path = &buf[separator - path + 2];
|
linker.cpp | 468 std::string entry_path; local 477 if (parse_zip_path(normalized_path.c_str(), &zip_path, &entry_path)) { 483 resolved_paths->push_back(std::string(resolved_path) + kZipFileSeparator + entry_path); local [all...] |
/system/core/bootstat/ |
boot_event_record_store_test.cpp | 89 const std::string entry_path = path + "/" + entry_name; local 91 DeleteDirectory(entry_path); 93 unlink(entry_path.c_str());
|
/frameworks/native/cmds/dumpstate/ |
dumpstate.h | 91 bool add_zip_entry(const std::string& entry_name, const std::string& entry_path);
|
dumpstate.cpp | 631 bool add_zip_entry(const std::string& entry_name, const std::string& entry_path) { 632 ScopedFd fd(TEMP_FAILURE_RETRY(open(entry_path.c_str(), O_RDONLY | O_NONBLOCK | O_CLOEXEC))); 634 MYLOGE("open(%s): %s\n", entry_path.c_str(), strerror(errno)); [all...] |
/external/chromium-trace/catapult/telemetry/third_party/pyfakefs/pyfakefs/ |
fake_filesystem.py | [all...] |
/external/chromium-trace/catapult/third_party/pyfakefs/pyfakefs/ |
fake_filesystem.py | [all...] |