Home
last modified time | relevance | path

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

/aosp14/system/core/init/
H A Dparser.cpp135 std::string config_contents; in ParseConfigFileInsecure() local
136 if (!android::base::ReadFileToString(path, &config_contents, follow_symlinks)) { in ParseConfigFileInsecure()
140 ParseData(path, &config_contents); in ParseConfigFileInsecure()
147 auto config_contents = ReadFile(path); in ParseConfigFile() local
148 if (!config_contents.ok()) { in ParseConfigFile()
150 << "': " << config_contents.error(); in ParseConfigFile()
153 ParseData(path, &config_contents.value()); in ParseConfigFile()