Home
last modified time | relevance | path

Searched refs:ParseConfig (Results 1 – 3 of 3) sorted by relevance

/art/libnativeloader/
Dnative_loader_test.cpp42 using internal::ParseConfig;
621 Result<std::vector<std::string>> result = ParseConfig(file_content, always_true); in TEST()
637 Result<std::vector<std::string>> result = ParseConfig(file_content, always_true); in TEST()
651 ParseConfig(file_content, in TEST()
672 ParseConfig(file_content, in TEST()
679 ASSERT_FALSE(ParseConfig("libA.so 32 64", always_true).ok()); in TEST()
680 ASSERT_FALSE(ParseConfig("libA.so 32 32", always_true).ok()); in TEST()
681 ASSERT_FALSE(ParseConfig("libA.so 32 nopreload 64", always_true).ok()); in TEST()
682 ASSERT_FALSE(ParseConfig("32 libA.so nopreload", always_true).ok()); in TEST()
683 ASSERT_FALSE(ParseConfig("nopreload libA.so 32", always_true).ok()); in TEST()
[all …]
Dpublic_libraries.h64 Result<std::vector<std::string>> ParseConfig(
Dpublic_libraries.cpp45 using internal::ParseConfig;
126 Result<std::vector<std::string>> result = ParseConfig(file_content, filter_fn); in ReadConfig()
435 Result<std::vector<std::string>> ParseConfig( in ParseConfig() function