Home
last modified time | relevance | path

Searched refs:always_true (Results 1 – 2 of 2) sorted by relevance

/art/libnativeloader/
Dnative_loader_test.cpp448 const std::function<Result<bool>(const struct ConfigEntry&)> always_true = variable
464 Result<std::vector<std::string>> result = ParseConfig(file_content, always_true); in TEST()
480 Result<std::vector<std::string>> result = ParseConfig(file_content, always_true); in TEST()
522 ASSERT_FALSE(ParseConfig("libA.so 32 64", always_true).ok()); in TEST()
523 ASSERT_FALSE(ParseConfig("libA.so 32 32", always_true).ok()); in TEST()
524 ASSERT_FALSE(ParseConfig("libA.so 32 nopreload 64", always_true).ok()); in TEST()
525 ASSERT_FALSE(ParseConfig("32 libA.so nopreload", always_true).ok()); in TEST()
526 ASSERT_FALSE(ParseConfig("nopreload libA.so 32", always_true).ok()); in TEST()
527 ASSERT_FALSE(ParseConfig("libA.so nopreload # comment", always_true).ok()); in TEST()
Dpublic_libraries.cpp88 const std::function<Result<bool>(const struct ConfigEntry&)> always_true = variable
180 auto sonames = ReadConfig(kVendorPublicLibrariesFile, always_true); in InitVendorPublicLibraries()
203 auto sonames = ReadConfig(config_file, always_true); in InitLlndkLibrariesVendor()
217 auto sonames = ReadConfig(config_file, always_true); in InitLlndkLibrariesProduct()
228 auto sonames = ReadConfig(config_file, always_true); in InitVndkspLibrariesVendor()
242 auto sonames = ReadConfig(config_file, always_true); in InitVndkspLibrariesProduct()