Home
last modified time | relevance | path

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

/art/libnativeloader/
Dnative_loader_test.cpp605 const std::function<Result<bool>(const struct ConfigEntry&)> always_true = variable
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()
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()
684 ASSERT_FALSE(ParseConfig("libA.so nopreload # comment", always_true).ok()); in TEST()
Dpublic_libraries.cpp116 const std::function<Result<bool>(const struct ConfigEntry&)> always_true = variable
251 auto sonames = ReadConfig(kVendorPublicLibrariesFile, always_true); in InitVendorPublicLibraries()
274 auto sonames = ReadConfig(config_file, always_true); in InitLlndkLibrariesVendor()
288 auto sonames = ReadConfig(config_file, always_true); in InitLlndkLibrariesProduct()
299 auto sonames = ReadConfig(config_file, always_true); in InitVndkspLibrariesVendor()
313 auto sonames = ReadConfig(config_file, always_true); in InitVndkspLibrariesProduct()