Home
last modified time | relevance | path

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

/system/core/init/
Dservice_parser.cpp53 Result<void> ServiceParser::ParseCapabilities(std::vector<std::string>&& args) { in ParseCapabilities()
81 Result<void> ServiceParser::ParseClass(std::vector<std::string>&& args) { in ParseClass()
86 Result<void> ServiceParser::ParseConsole(std::vector<std::string>&& args) { in ParseConsole()
95 Result<void> ServiceParser::ParseCritical(std::vector<std::string>&& args) { in ParseCritical()
100 Result<void> ServiceParser::ParseDisabled(std::vector<std::string>&& args) { in ParseDisabled()
106 Result<void> ServiceParser::ParseEnterNamespace(std::vector<std::string>&& args) { in ParseEnterNamespace()
120 Result<void> ServiceParser::ParseGroup(std::vector<std::string>&& args) { in ParseGroup()
137 Result<void> ServiceParser::ParsePriority(std::vector<std::string>&& args) { in ParsePriority()
148 Result<void> ServiceParser::ParseInterface(std::vector<std::string>&& args) { in ParseInterface()
183 Result<void> ServiceParser::ParseIoprio(std::vector<std::string>&& args) { in ParseIoprio()
[all …]
Dservice_parser.h30 class ServiceParser : public SectionParser {
32 ServiceParser(
48 using OptionParser = Result<void> (ServiceParser::*)(std::vector<std::string>&& args);
49 const KeywordMap<ServiceParser::OptionParser>& GetParserMap() const;
Dinit_test.cpp51 std::make_unique<ServiceParser>(service_list, nullptr, std::nullopt)); in TestInit()
265 std::make_unique<ServiceParser>(&service_list, nullptr, std::nullopt)); in TEST()
Dservice.h64 friend class ServiceParser; variable
Dhost_init_verifier.cpp270 parser.AddSectionParser("service", std::make_unique<ServiceParser>( in main()
Dinit.cpp283 parser.AddSectionParser("service", std::make_unique<ServiceParser>( in CreateParser()
296 "service", std::make_unique<ServiceParser>(&service_list, GetSubcontext(), std::nullopt, in CreateServiceOnlyParser()
/system/core/init/test_utils/
Dservice_utils.cpp34 std::make_unique<ServiceParser>(&service_list, nullptr, std::nullopt)); in GetOnDeviceServiceInterfacesMap()