Home
last modified time | relevance | path

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

/external/llvm-project/lldb/test/API/tools/lldb-server/platform-process-connect/
DTestPlatformProcessConnect.py38 listen_url = "%s://%s" % (p.group(1), path)
40 listen_url = "*:0"
46 listen_url,
/external/llvm-project/lldb/test/API/commands/target/auto-install-main-executable/
DTestAutoInstallMainExecutable.py38 listen_url = "*:"+str(hostport+1)
43 listen_url,
/external/llvm-project/lldb/source/Plugins/Process/gdb-remote/
DGDBRemoteCommunication.cpp866 char listen_url[512]; in StartListenThread() local
868 snprintf(listen_url, sizeof(listen_url), "listen://%s:%i", hostname, port); in StartListenThread()
870 snprintf(listen_url, sizeof(listen_url), "listen://%i", port); in StartListenThread()
871 m_listen_url = listen_url; in StartListenThread()
874 listen_url, GDBRemoteCommunication::ListenThread, this); in StartListenThread()