Home
last modified time | relevance | path

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

/system/core/init/
Dueventd_parser.cpp148 class SubsystemParser : public SectionParser { class
150 SubsystemParser(std::vector<Subsystem>* subsystems) : subsystems_(subsystems) {} in SubsystemParser() function in android::init::SubsystemParser
164 Result<void> SubsystemParser::ParseSection(std::vector<std::string>&& args, in ParseSection()
179 Result<void> SubsystemParser::ParseDevName(std::vector<std::string>&& args) { in ParseDevName()
192 Result<void> SubsystemParser::ParseDirName(std::vector<std::string>&& args) { in ParseDirName()
201 Result<void> SubsystemParser::ParseLineSection(std::vector<std::string>&& args, int line) { in ParseLineSection()
202 using OptionParser = Result<void> (SubsystemParser::*)(std::vector<std::string> && args); in ParseLineSection()
205 {"devname", {1, 1, &SubsystemParser::ParseDevName}}, in ParseLineSection()
206 {"dirname", {1, 1, &SubsystemParser::ParseDirName}}, in ParseLineSection()
217 Result<void> SubsystemParser::EndSection() { in EndSection()
[all …]
Ddevices.h78 friend class SubsystemParser;