Home
last modified time | relevance | path

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

/system/core/init/
Dparser.cpp36 section_parsers_[name] = std::move(parser); in AddSectionParser()
78 for (const auto& [section_name, section_parser] : section_parsers_) { in ParseData()
99 } else if (section_parsers_.count(args[0])) { in ParseData()
101 section_parser = section_parsers_[args[0]].get(); in ParseData()
Dparser.h88 std::map<std::string, std::unique_ptr<SectionParser>> section_parsers_; variable