Home
last modified time | relevance | path

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

/system/core/init/
Dparser.cpp133 std::string config_contents; in ParseConfigFileInsecure() local
134 if (!android::base::ReadFileToString(path, &config_contents)) { in ParseConfigFileInsecure()
138 ParseData(path, &config_contents); in ParseConfigFileInsecure()
145 auto config_contents = ReadFile(path); in ParseConfigFile() local
146 if (!config_contents.ok()) { in ParseConfigFile()
147 LOG(INFO) << "Unable to read config file '" << path << "': " << config_contents.error(); in ParseConfigFile()
151 ParseData(path, &config_contents.value()); in ParseConfigFile()