OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:entry_path
(Results
1 - 4
of
4
) sorted by null
/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);
/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());
/bionic/linker/
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
...]
Completed in 575 milliseconds