Home | History | Annotate | Download | only in remote-processor

Lines Matching refs:strResult

51      * @param[out] strResult a string containing the result of the command.
56 const IRemoteCommand &remoteCommand, std::string &strResult);
80 std::string &strResult) const
85 strResult = std::string("Not enough arguments supplied\nUsage:\n") + usage();
90 switch ((pCommandParser->*_pfnParser)(remoteCommand, strResult)) {
92 strResult = "Done";
97 strResult = usage();
150 bool remoteCommandProcess(const IRemoteCommand &remoteCommand, std::string &strResult)
159 strResult = "Command not found!\nUse \"help\" to show available commands";
166 helpCommandProcess(strResult);
171 return pRemoteCommandParserItem->parse(_pCommandParser, remoteCommand, strResult);
193 void helpCommandProcess(std::string &strResult)
205 strResult += strUsage + std::string(spacesToAdd, ' ') + "=> " +