Home
last modified time | relevance | path

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

/ide/tools/previewer/cli/
DCommandLineInterface.h26 class CommandLineInterface {
28 CommandLineInterface(const CommandLineInterface&) = delete;
29 CommandLineInterface& operator=(const CommandLineInterface&) = delete;
31 static CommandLineInterface& GetInstance();
47 explicit CommandLineInterface();
48 virtual ~CommandLineInterface();
DCommandLineInterface.cpp32 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 …]
DBUILD.gn25 "CommandLineInterface.cpp",
66 "CommandLineInterface.cpp",
DCommandLineFactory.cpp83 commandResult["version"] = CommandLineInterface::COMMAND_VERSION; in CreateCommandLine()
DCommandLine.cpp118 this->commandResult["version"] = CommandLineInterface::COMMAND_VERSION; in SetCommandResult()
/ide/tools/previewer/jsapp/lite/
DTimerTaskHandler.cpp101 result["version"] = CommandLineInterface::COMMAND_VERSION; in CheckBrightnessValueChanged()
105 CommandLineInterface::SendJsonData(result); in CheckBrightnessValueChanged()
/ide/tools/previewer/
DRichPreviewer.cpp110 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()
DThinPreviewer.cpp64 CommandLineInterface::GetInstance().ReadAndApplyConfig(args); in InitJsApp()
132CommandLineInterface::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/
DVirtualScreenImpl.cpp142 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()