Lines Matching refs:strResult
56 const IRemoteCommand &remoteCommand, std::string &strResult);
80 std::string &strResult) const in parse() argument
85 strResult = std::string("Not enough arguments supplied\nUsage:\n") + usage(); in parse()
90 switch ((pCommandParser->*_pfnParser)(remoteCommand, strResult)) { in parse()
92 strResult = "Done"; in parse()
97 strResult = usage(); in parse()
150 bool remoteCommandProcess(const IRemoteCommand &remoteCommand, std::string &strResult) override in remoteCommandProcess() argument
159 strResult = "Command not found!\nUse \"help\" to show available commands"; in remoteCommandProcess()
166 helpCommandProcess(strResult); in remoteCommandProcess()
171 return pRemoteCommandParserItem->parse(_pCommandParser, remoteCommand, strResult); in remoteCommandProcess()
193 void helpCommandProcess(std::string &strResult) in helpCommandProcess() argument
205 strResult += strUsage + std::string(spacesToAdd, ' ') + "=> " + in helpCommandProcess()