Searched refs:DecodeHostAndPort (Results 1 – 7 of 7) sorted by relevance
| /llvm-project-15.0.7/lldb/unittests/Host/ |
| H A D | SocketTest.cpp | 35 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 D | TCPSocket.cpp | 156 llvm::Expected<HostAndPort> host_port = DecodeHostAndPort(name); in Connect() 192 llvm::Expected<HostAndPort> host_port = DecodeHostAndPort(name); in Listen()
|
| H A D | UDPSocket.cpp | 62 llvm::Expected<HostAndPort> host_port = DecodeHostAndPort(name); in Connect()
|
| H A D | Socket.cpp | 188 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 D | Socket.h | 103 DecodeHostAndPort(llvm::StringRef host_and_port);
|
| /llvm-project-15.0.7/lldb/tools/lldb-server/ |
| H A D | Acceptor.cpp | 96 if (!llvm::errorToBool(Socket::DecodeHostAndPort(name).takeError())) in Create()
|
| /llvm-project-15.0.7/lldb/source/Plugins/Process/gdb-remote/ |
| H A D | GDBRemoteCommunicationServerLLGS.cpp | 4291 if (!llvm::errorToBool(Socket::DecodeHostAndPort(host_port).takeError())) in LLGSArgToURL()
|