Home
last modified time | relevance | path

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

/llvm-project-15.0.7/lldb/unittests/Host/
H A DSocketTest.cpp35 TEST_P(SocketTest, DecodeHostAndPort) { in TEST_P() argument
36 EXPECT_THAT_EXPECTED(Socket::DecodeHostAndPort("localhost:1138"), in TEST_P()
40 Socket::DecodeHostAndPort("google.com:65536"), in TEST_P()
45 Socket::DecodeHostAndPort("google.com:-1138"), in TEST_P()
50 Socket::DecodeHostAndPort("google.com:65536"), in TEST_P()
54 EXPECT_THAT_EXPECTED(Socket::DecodeHostAndPort("12345"), in TEST_P()
57 EXPECT_THAT_EXPECTED(Socket::DecodeHostAndPort("*:0"), in TEST_P()
60 EXPECT_THAT_EXPECTED(Socket::DecodeHostAndPort("*:65535"), in TEST_P()
64 Socket::DecodeHostAndPort("[::1]:12345"), in TEST_P()
68 Socket::DecodeHostAndPort("[abcd:12fg:AF58::1]:12345"), in TEST_P()
/llvm-project-15.0.7/lldb/source/Host/common/
H A DTCPSocket.cpp156 llvm::Expected<HostAndPort> host_port = DecodeHostAndPort(name); in Connect()
192 llvm::Expected<HostAndPort> host_port = DecodeHostAndPort(name); in Listen()
H A DUDPSocket.cpp62 llvm::Expected<HostAndPort> host_port = DecodeHostAndPort(name); in Connect()
H A DSocket.cpp188 llvm::Expected<Socket::HostAndPort> Socket::DecodeHostAndPort(llvm::StringRef host_and_port) { in DecodeHostAndPort() function in Socket
/llvm-project-15.0.7/lldb/include/lldb/Host/
H A DSocket.h103 DecodeHostAndPort(llvm::StringRef host_and_port);
/llvm-project-15.0.7/lldb/tools/lldb-server/
H A DAcceptor.cpp96 if (!llvm::errorToBool(Socket::DecodeHostAndPort(name).takeError())) in Create()
/llvm-project-15.0.7/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationServerLLGS.cpp4291 if (!llvm::errorToBool(Socket::DecodeHostAndPort(host_port).takeError())) in LLGSArgToURL()