Searched refs:command (Results 1 – 9 of 9) sorted by relevance
/ide/tools/previewer/cli/ |
D | CommandLineFactory.cpp | 74 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()
|
D | CommandLineInterface.cpp | 137 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()
|
D | CommandLineFactory.h | 28 static std::unique_ptr<CommandLine> CreateCommandLine(std::string command,
|
D | CommandLineInterface.h | 38 …void ApplyConfigCommands(const std::string& key, const std::unique_ptr<CommandLine>& command) cons…
|
D | CommandLine.h | 38 void SetCommandName(std::string command);
|
D | CommandLine.cpp | 110 void CommandLine::SetCommandName(std::string command) in SetCommandName() argument 112 this->commandName = command; in SetCommandName()
|
/ide/tools/previewer/util/ |
D | CommandParser.cpp | 483 bool CommandParser::IsResolutionArgValid(string command) in IsResolutionArgValid() argument 485 vector<string> value = Values(command); in IsResolutionArgValid() 486 uint32_t size = regsArgsCountMap[command]; in IsResolutionArgValid()
|
D | CommandParser.h | 117 bool IsResolutionArgValid(std::string command);
|
/ide/tools/previewer/ |
D | README.md | 11 To start with, the DevEco Studio Previewer launches the Previewer component through the command lin…
|