/arkcompiler/runtime_core/static_core/runtime/tooling/inspector/ |
D | asio_server.cpp | 49 websocketpp::uri_ptr AsioServer::Start(uint32_t port) in Start() argument 57 endpoint_.listen(port, ec); in Start() 59 LOG(ERROR, DEBUGGER) << "Failed to bind Inspector server on port " << port; in Start() 70 … return std::make_shared<websocketpp::uri>(false, ep.address().to_string(), ep.port(), "/"); in Start()
|
D | init.cpp | 35 extern "C" int StartDebugger(uint32_t port, bool breakOnStart) in StartDebugger() argument 42 if (!g_server.Start(port)) { in StartDebugger()
|
D | asio_server.h | 40 websocketpp::uri_ptr Start(uint32_t port = 0);
|
/arkcompiler/toolchain/tooling/client/session/ |
D | session.cpp | 63 uint32_t port = 0; in CreateSocket() local 64 if (Utils::StrToUInt(sockInfo_.c_str(), &port)) { in CreateSocket() 65 if ((port <= 0) || (port >= 65535)) { // 65535: max port in CreateSocket() 66 LOGE("arkdb:InitToolchainWebSocketForPort the port = %{public}d is wrong.", port); in CreateSocket() 69 if (!cliSocket_.InitToolchainWebSocketForPort(port, 5)) { // 5: five times in CreateSocket()
|
/arkcompiler/toolchain/test/fuzztest/wsserver_fuzzer/ |
D | wsserver_fuzzer.cpp | 38 int port = 9230; // 9230:connection port for test in WsServerFuzzTest() local 40 DebugInfo debugInfo = {fd, "toolchain", instanceId, port}; in WsServerFuzzTest()
|
/arkcompiler/runtime_core/static_core/runtime/ |
D | default_debugger_agent.cpp | 53 uint32_t port = Runtime::GetOptions().GetDebuggerPort(); in CallLoadCallback() local 55 int res = reinterpret_cast<StartDebuggerT>(resolvedFunction)(port, breakOnStart); in CallLoadCallback()
|
/arkcompiler/toolchain/build/third_party_gn/googletest/ |
D | BUILD.gn | 52 "$googletest_dir/include/gtest/internal/custom/gtest-port.h", 59 "$googletest_dir/include/gtest/internal/gtest-port-arch.h", 60 "$googletest_dir/include/gtest/internal/gtest-port.h", 68 "$googletest_dir/src/gtest-port.cc", 121 "$googlemock_dir/include/gmock/internal/custom/gmock-port.h", 123 "$googlemock_dir/include/gmock/internal/gmock-port.h",
|
/arkcompiler/toolchain/inspector/ |
D | ws_server.cpp | 39 LOGI("WsSever Runsever: Init tcp websocket %{public}d", debugInfo_.port); in RunServer() 40 if (!webSocket_->InitTcpWebSocket(debugInfo_.port)) { in RunServer()
|
D | ws_server.h | 34 int port {-1};
|
D | inspector.h | 36 int32_t instanceId, const DebuggerPostTask& debuggerPostTask, int port);
|
D | inspector.cpp | 336 int32_t instanceId, const DebuggerPostTask& debuggerPostTask, int port) in StartDebug() argument 354 DebugInfo debugInfo = {startDebugInOldProcess, componentName, instanceId, port}; in StartDebug() 360 if (isDebugMode && port > 0) { in StartDebug()
|
/arkcompiler/ets_frontend/test/scripts/auto_xts_test/get_resource/ |
D | spider.py | 67 port = root.find(xml_dw) 68 port.text = "8710"
|
/arkcompiler/toolchain/websocket/server/ |
D | websocket_server.cpp | 143 bool WebSocketServer::InitTcpWebSocket(int port, uint32_t timeoutLimit) in InitTcpWebSocket() argument 145 if (port < 0) { in InitTcpWebSocket() 182 addrSin.sin_port = htons(port); in InitTcpWebSocket()
|
D | websocket_server.h | 37 bool InitTcpWebSocket(int port, uint32_t timeoutLimit = 0);
|
/arkcompiler/toolchain/websocket/client/ |
D | websocket_client.h | 36 bool InitToolchainWebSocketForPort(int port, uint32_t timeoutLimit = 5);
|
D | websocket_client.cpp | 30 bool WebSocketClient::InitToolchainWebSocketForPort(int port, uint32_t timeoutLimit) in InitToolchainWebSocketForPort() argument 60 clientAddr.sin_port = htons(port); in InitToolchainWebSocketForPort()
|
/arkcompiler/toolchain/tooling/test/client_utils/ |
D | test_util.h | 65 static void ForkSocketClient(int port, const std::string &name);
|
D | test_util.cpp | 91 void TestUtil::ForkSocketClient([[maybe_unused]] int port, const std::string &name) in ForkSocketClient() argument 107 std::string sockInfo = std::to_string(port); in ForkSocketClient()
|
/arkcompiler/runtime_core/static_core/docs/ |
D | debugger-vscode-communication.md | 4 Command `ark --debugger --debugger-port=<port_number> --debugger-library-path=<path_to_debugger_lib…
|
/arkcompiler/runtime_core/docs/ |
D | debugger-vscode-communication.md | 4 Command `ark --debugger --debugger-port=<port_number> --debugger-library-path=<path_to_debugger_lib…
|
/arkcompiler/ets_runtime/ecmascript/napi/ |
D | jsnapi.cpp | 103 const DebuggerPostTask& debuggerPostTask, int port);
|
D | jsnapi_expo.cpp | 2942 << ", port = " << option.port << ", instanceId = " << instanceId; in StartDebugger() 2974 "PandaDebugger", vm, option.isDebugMode, instanceId, debuggerPostTask, option.port); in StartDebugger() 2989 DEBUGGER_NAME, vm, option.isDebugMode, instanceId, debuggerPostTask, option.port); in StartDebugger() 3031 "PandaDebugger", vm, option.isDebugMode, instanceId, debuggerPostTask, option.port); in StartDebuggerForOldProcess() 3046 DEBUGGER_NAME, vm, option.isDebugMode, instanceId, debuggerPostTask, option.port); in StartDebuggerForOldProcess()
|
/arkcompiler/ets_runtime/ecmascript/napi/include/ |
D | jsnapi_expo.h | 1134 int port = -1; member
|
/arkcompiler/ets_frontend/legacy_bin/api8/src/ |
D | index.js | 2 …port:t[4],path:t[5]}:null}function a(e){var t="";return e.scheme&&(t+=e.scheme+":"),t+="//",e.auth…
|