Home
last modified time | relevance | path

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

/ide/tools/previewer/cli/
DCommandLineFactory.cpp77 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()
DCommandLineInterface.cpp139 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()
DCommandLineFactory.h28 static std::unique_ptr<CommandLine> CreateCommandLine(std::string command,
DCommandLineInterface.h39 …void ApplyConfigCommands(const std::string& key, const std::unique_ptr<CommandLine>& command) cons…
DCommandLine.h40 void SetCommandName(std::string command);
DCommandLine.cpp111 void CommandLine::SetCommandName(std::string command) in SetCommandName() argument
113 this->commandName = command; in SetCommandName()
/ide/tools/previewer/
DREADME.md11 To start with, the DevEco Studio Previewer launches the Previewer component through the command lin…
/ide/tools/previewer/util/
DCommandParser.h137 bool IsResolutionArgValid(std::string command);
DCommandParser.cpp510 bool CommandParser::IsResolutionArgValid(string command) in IsResolutionArgValid() argument
512 vector<string> value = Values(command); in IsResolutionArgValid()
513 uint32_t size = regsArgsCountMap[command]; in IsResolutionArgValid()