Searched refs:port (Results 1 - 9 of 9) sorted by relevance
| /ide/tools/previewer/test/mock/util/ |
| H A D | MockWebSocketServer.cpp | 36 void WebSocketServer::SetServerPort(int port) in SetServerPort() argument 38 serverPort = port; in SetServerPort()
|
| /ide/tools/previewer/util/ |
| H A D | WebSocketServer.cpp | 42 void WebSocketServer::SetServerPort(int port) in SetServerPort() argument 44 serverPort = port; in SetServerPort() 100 contextInfo.port = serverPort; in StartWebsocketListening()
|
| H A D | WebSocketServer.h | 29 void SetServerPort(int port);
|
| H A D | CommandParser.cpp | 56 Register("-p", 1, "Config debug server to listen <port>."); in CommandParser() 74 Register("-lws", 1, "Listening port of WebSocket"); in CommandParser() 308 int port = atoi(Value("p").c_str()); in IsDebugPortValid() local 309 if (port < MIN_PORT || port > MAX_PORT) { in IsDebugPortValid() 311 std::string("Debug server port out of range: " + std::to_string(MIN_PORT) + "-" + in IsDebugPortValid() 317 ILOG("CommandParser debug port: %s", Value("p").c_str()); in IsDebugPortValid() 649 int port = atoi(Value("lws").c_str()); in IsWebSocketPortValid() local 650 if (port < MIN_PORT || port > MAX_POR in IsWebSocketPortValid() [all...] |
| /ide/tools/previewer/jsapp/ |
| H A D | JsApp.cpp | 77 void JsApp::SetPipePort(const std::string& port) in SetPipePort() argument 79 pipePort = port; in SetPipePort()
|
| H A D | JsApp.h | 113 void SetPipePort(const std::string& port);
|
| /ide/tools/previewer/test/unittest/mock/ |
| H A D | VirtualScreenImplTest.cpp | 125 std::string port = "8888"; in TEST_F() local 127 VirtualScreenImpl::GetInstance().InitPipe("aaa", port); in TEST_F() 128 EXPECT_EQ(WebSocketServer::GetInstance().serverPort, atoi(port.c_str())); in TEST_F() 388 std::string port = "8888"; in TEST_F() local 389 VirtualScreenImpl::GetInstance().InitAll("aaa", port); in TEST_F() 390 EXPECT_EQ(WebSocketServer::GetInstance().serverPort, atoi(port.c_str())); in TEST_F()
|
| /ide/tools/previewer/jsapp/lite/ |
| H A D | JsAppImpl.cpp | 233 config.port = debugServerPort; in StartJsApp()
|
| /ide/tools/previewer/test/unittest/jsapp/ |
| H A D | JsAppImplTest.cpp | 495 int port = 5000; in TEST_F() local 496 JsAppImpl::GetInstance().SetDebugServerPort(port); in TEST_F() 497 EXPECT_EQ(JsAppImpl::GetInstance().debugServerPort, port); in TEST_F()
|
Completed in 7 milliseconds