Searched refs:command (Results 1 – 9 of 9) sorted by relevance
/ide/tools/previewer/cli/ |
D | CommandLineFactory.cpp | 77 unique_ptr<CommandLine> CommandLineFactory::CreateCommandLine(string command, in CreateCommandLine() argument 82 if (typeMap.find(command) == typeMap.end()) { in CreateCommandLine() 85 commandResult["command"] = command; in CreateCommandLine() 92 if (typeMap[command] == nullptr) { in CreateCommandLine() 95 ILOG("Create Command: %s", command.c_str()); in CreateCommandLine() 96 unique_ptr<CommandLine> cmdLine = typeMap[command](type, val, socket); in CreateCommandLine() 100 cmdLine->SetCommandName(command); in CreateCommandLine()
|
D | CommandLineInterface.cpp | 139 string command = jsonData["command"].asString(); in ProcessCommandMessage() local 140 if (CommandParser::GetInstance().IsStaticCard() && IsStaticIgnoreCmd(command)) { in ProcessCommandMessage() 144 CommandLineFactory::CreateCommandLine(command, type, jsonData["args"], *socket); in ProcessCommandMessage() 226 std::unique_ptr<CommandLine> command = in ApplyConfigMembers() local 228 ApplyConfigCommands(key, command); in ApplyConfigMembers() 233 const unique_ptr<CommandLine>& command) const in ApplyConfigCommands() 235 if (command == nullptr) { in ApplyConfigCommands() 240 if (command->IsArgValid()) { in ApplyConfigCommands() 241 command->RunSet(); in ApplyConfigCommands()
|
D | CommandLineFactory.h | 28 static std::unique_ptr<CommandLine> CreateCommandLine(std::string command,
|
D | CommandLineInterface.h | 39 …void ApplyConfigCommands(const std::string& key, const std::unique_ptr<CommandLine>& command) cons…
|
D | CommandLine.h | 40 void SetCommandName(std::string command);
|
D | CommandLine.cpp | 111 void CommandLine::SetCommandName(std::string command) in SetCommandName() argument 113 this->commandName = command; in SetCommandName()
|
/ide/tools/previewer/ |
D | README.md | 11 To start with, the DevEco Studio Previewer launches the Previewer component through the command lin…
|
/ide/tools/previewer/util/ |
D | CommandParser.h | 137 bool IsResolutionArgValid(std::string command);
|
D | CommandParser.cpp | 510 bool CommandParser::IsResolutionArgValid(string command) in IsResolutionArgValid() argument 512 vector<string> value = Values(command); in IsResolutionArgValid() 513 uint32_t size = regsArgsCountMap[command]; in IsResolutionArgValid()
|