Searched refs:CommandLineInterface (Results 1 – 9 of 9) sorted by relevance
/ide/tools/previewer/cli/ |
D | CommandLineInterface.h | 26 class CommandLineInterface { 28 CommandLineInterface(const CommandLineInterface&) = delete; 29 CommandLineInterface& operator=(const CommandLineInterface&) = delete; 31 static CommandLineInterface& GetInstance(); 47 explicit CommandLineInterface(); 48 virtual ~CommandLineInterface();
|
D | CommandLineInterface.cpp | 32 const string CommandLineInterface::COMMAND_VERSION = "1.0.1"; 33 bool CommandLineInterface::isFirstWsSend = true; 34 bool CommandLineInterface::isPipeConnected = false; 35 CommandLineInterface::CommandLineInterface() : socket(nullptr) {} in CommandLineInterface() function in CommandLineInterface 37 CommandLineInterface::~CommandLineInterface() {} in ~CommandLineInterface() 39 void CommandLineInterface::InitPipe(const string name) in InitPipe() 57 CommandLineInterface& CommandLineInterface::GetInstance() in GetInstance() 59 static CommandLineInterface instance; /* NOLINT */ in GetInstance() 63 void CommandLineInterface::SendJsonData(const Json::Value& value) in SendJsonData() 68 void CommandLineInterface::SendJSHeapMemory(size_t total, size_t alloc, size_t peak) const in SendJSHeapMemory() [all …]
|
D | BUILD.gn | 25 "CommandLineInterface.cpp", 66 "CommandLineInterface.cpp",
|
D | CommandLineFactory.cpp | 83 commandResult["version"] = CommandLineInterface::COMMAND_VERSION; in CreateCommandLine()
|
D | CommandLine.cpp | 118 this->commandResult["version"] = CommandLineInterface::COMMAND_VERSION; in SetCommandResult()
|
/ide/tools/previewer/jsapp/lite/ |
D | TimerTaskHandler.cpp | 101 result["version"] = CommandLineInterface::COMMAND_VERSION; in CheckBrightnessValueChanged() 105 CommandLineInterface::SendJsonData(result); in CheckBrightnessValueChanged()
|
/ide/tools/previewer/ |
D | RichPreviewer.cpp | 110 commandResult["version"] = CommandLineInterface::COMMAND_VERSION; in NotifyInspectorChanged() 113 CommandLineInterface::GetInstance().SendJsonData(commandResult); in NotifyInspectorChanged() 127 CommandLineInterface::GetInstance().ProcessCommand(); in ProcessCommand() 177 CommandLineInterface::GetInstance().Init(parser.Value("s")); in main()
|
D | ThinPreviewer.cpp | 64 CommandLineInterface::GetInstance().ReadAndApplyConfig(args); in InitJsApp() 132 …CommandLineInterface::GetInstance().SendJSHeapMemory(status.totalBytes, status.allocBytes, status.… in SendJsHeapData() 169 CommandLineInterface::GetInstance().Init(parser.Value("s")); in main() 190 CommandLineInterface::GetInstance().ProcessCommand(); in main()
|
/ide/tools/previewer/mock/rich/ |
D | VirtualScreenImpl.cpp | 142 CommandLineInterface::GetInstance().CreatCommandToSendData("CurrentRouter", val, "get"); in PageCallBack() 151 CommandLineInterface::GetInstance().CreatCommandToSendData("LoadContent", val, "get"); in LoadContentCallBack() 159 CommandLineInterface::GetInstance().CreatCommandToSendData("FastPreviewMsg", val, "get"); in FastPreviewCallBack()
|