• Home
  • Raw
  • Download

Lines Matching refs:Success

32 Result<Success> ParsePermissionsLine(std::vector<std::string>&& args,  in ParsePermissionsLine()
77 return Success(); in ParsePermissionsLine()
80 Result<Success> ParseFirmwareDirectoriesLine(std::vector<std::string>&& args, in ParseFirmwareDirectoriesLine()
88 return Success(); in ParseFirmwareDirectoriesLine()
91 Result<Success> ParseModaliasHandlingLine(std::vector<std::string>&& args, in ParseModaliasHandlingLine()
105 return Success(); in ParseModaliasHandlingLine()
108 Result<Success> ParseUeventSocketRcvbufSizeLine(std::vector<std::string>&& args, in ParseUeventSocketRcvbufSizeLine()
121 return Success(); in ParseUeventSocketRcvbufSizeLine()
127 Result<Success> ParseSection(std::vector<std::string>&& args, const std::string& filename,
129 Result<Success> ParseLineSection(std::vector<std::string>&& args, int line) override;
130 Result<Success> EndSection() override;
133 Result<Success> ParseDevName(std::vector<std::string>&& args);
134 Result<Success> ParseDirName(std::vector<std::string>&& args);
140 Result<Success> SubsystemParser::ParseSection(std::vector<std::string>&& args, in ParseSection()
152 return Success(); in ParseSection()
155 Result<Success> SubsystemParser::ParseDevName(std::vector<std::string>&& args) { in ParseDevName()
158 return Success(); in ParseDevName()
162 return Success(); in ParseDevName()
168 Result<Success> SubsystemParser::ParseDirName(std::vector<std::string>&& args) { in ParseDirName()
174 return Success(); in ParseDirName()
177 Result<Success> SubsystemParser::ParseLineSection(std::vector<std::string>&& args, int line) { in ParseLineSection()
178 using OptionParser = Result<Success> (SubsystemParser::*)(std::vector<std::string> && args); in ParseLineSection()
200 Result<Success> SubsystemParser::EndSection() { in EndSection()
203 return Success(); in EndSection()