Home
last modified time | relevance | path

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

/arkcompiler/jsvm/src/inspector/
Dinspector_socket_server.cpp587 …auto unixDomainSocketPath = "jsvm_devtools_remote_" + std::to_string(port) + "_" + std::to_string(… in DetectPort() local
588 auto* abstract = new char[unixDomainSocketPath.length() + 2]; in DetectPort()
590 … int ret = strcpy_s(abstract + 1, unixDomainSocketPath.length() + 2, unixDomainSocketPath.c_str()); in DetectPort()
594 status = uv_pipe_bind2(&unixSocket, abstract, unixDomainSocketPath.length() + 1, 0); in DetectPort()