Home
last modified time | relevance | path

Searched refs:commandResult (Results 1 – 4 of 4) sorted by relevance

/ide/tools/previewer/cli/
DCommandLineFactory.cpp83 Json::Value commandResult; in CreateCommandLine() local
84 commandResult["version"] = CommandLineInterface::COMMAND_VERSION; in CreateCommandLine()
85 commandResult["command"] = command; in CreateCommandLine()
86 commandResult["result"] = "Unsupported command"; in CreateCommandLine()
87 socket << commandResult.toStyledString(); in CreateCommandLine()
DCommandLine.cpp66 if (commandResult.empty()) { in SendResult()
69 cliSocket << commandResult.toStyledString(); in SendResult()
70 commandResult.clear(); in SendResult()
118 this->commandResult["version"] = CommandLineInterface::COMMAND_VERSION; in SetCommandResult()
119 this->commandResult["command"] = this->commandName; in SetCommandResult()
120 this->commandResult[resultType] = resultContent; in SetCommandResult()
DCommandLine.h45 Json::Value commandResult; variable
/ide/tools/previewer/
DRichPreviewer.cpp137 Json::Value commandResult; in NotifyInspectorChanged() local
138 commandResult["version"] = CommandLineInterface::COMMAND_VERSION; in NotifyInspectorChanged()
139 commandResult["command"] = "inspector"; in NotifyInspectorChanged()
140 commandResult["result"] = jsonTree; in NotifyInspectorChanged()
141 CommandLineInterface::GetInstance().SendJsonData(commandResult); in NotifyInspectorChanged()