Home
last modified time | relevance | path

Searched refs:command (Results 1 – 9 of 9) sorted by relevance

/ide/tools/previewer/cli/
DCommandLineFactory.cpp74 unique_ptr<CommandLine> CommandLineFactory::CreateCommandLine(string command, in CreateCommandLine() argument
79 if (typeMap.find(command) == typeMap.end()) { in CreateCommandLine()
82 commandResult["command"] = command; in CreateCommandLine()
89 if (typeMap[command] == nullptr) { in CreateCommandLine()
92 ILOG("Create Command: %s", command.c_str()); in CreateCommandLine()
93 unique_ptr<CommandLine> cmdLine = typeMap[command](type, val, socket); in CreateCommandLine()
97 cmdLine->SetCommandName(command); in CreateCommandLine()
DCommandLineInterface.cpp137 string command = jsonData["command"].asString(); in ProcessCommandMessage() local
139 CommandLineFactory::CreateCommandLine(command, type, jsonData["args"], *socket); in ProcessCommandMessage()
221 std::unique_ptr<CommandLine> command = in ApplyConfigMembers() local
223 ApplyConfigCommands(key, command); in ApplyConfigMembers()
228 const unique_ptr<CommandLine>& command) const in ApplyConfigCommands()
230 if (command == nullptr) { in ApplyConfigCommands()
235 if (command->IsArgValid()) { in ApplyConfigCommands()
236 command->RunSet(); in ApplyConfigCommands()
DCommandLineFactory.h28 static std::unique_ptr<CommandLine> CreateCommandLine(std::string command,
DCommandLineInterface.h38 …void ApplyConfigCommands(const std::string& key, const std::unique_ptr<CommandLine>& command) cons…
DCommandLine.h38 void SetCommandName(std::string command);
DCommandLine.cpp110 void CommandLine::SetCommandName(std::string command) in SetCommandName() argument
112 this->commandName = command; in SetCommandName()
/ide/tools/previewer/util/
DCommandParser.cpp483 bool CommandParser::IsResolutionArgValid(string command) in IsResolutionArgValid() argument
485 vector<string> value = Values(command); in IsResolutionArgValid()
486 uint32_t size = regsArgsCountMap[command]; in IsResolutionArgValid()
DCommandParser.h117 bool IsResolutionArgValid(std::string command);
/ide/tools/previewer/
DREADME.md11 To start with, the DevEco Studio Previewer launches the Previewer component through the command lin…