Home
last modified time | relevance | path

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

/art/libnativeloader/
Dnative_loader_test.cpp693 const char file_content[] = R"( in TEST() local
705 Result<std::vector<std::string>> result = ParseConfig(file_content, always_true); in TEST()
711 const char file_content[] = R"( in TEST() local
721 Result<std::vector<std::string>> result = ParseConfig(file_content, always_true); in TEST()
727 const char file_content[] = R"( in TEST() local
735 ParseConfig(file_content, in TEST()
742 const char file_content[] = R"( in TEST() local
756 ParseConfig(file_content, in TEST()
772 const char file_content[] = R"( in TEST() local
783 ParseApexLibrariesConfig(file_content, "jni"); in TEST()
[all …]
Dpublic_libraries.h70 const std::string& file_content,
76 const std::string& file_content, const std::string& tag);
Dpublic_libraries.cpp96 std::string file_content; in ReadConfig() local
97 if (!base::ReadFileToString(configFile, &file_content)) { in ReadConfig()
100 Result<std::vector<std::string>> result = ParseConfig(file_content, filter_fn); in ReadConfig()
321 std::string file_content; in InitApexLibraries() local
322 if (!base::ReadFileToString(kApexLibrariesConfigFile, &file_content)) { in InitApexLibraries()
327 Result<std::map<std::string, std::string>> config = ParseApexLibrariesConfig(file_content, tag); in InitApexLibraries()
457 const std::string& file_content, in ParseConfig() argument
459 std::vector<std::string> lines = base::Split(file_content, "\n"); in ParseConfig()
527 Result<std::map<std::string, std::string>> ParseApexLibrariesConfig(const std::string& file_content in ParseApexLibrariesConfig() argument
529 std::vector<std::string> lines = base::Split(file_content, "\n"); in ParseApexLibrariesConfig()