reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

Declarations

tools/lldb/include/lldb/Host/Socket.h
  101   static bool DecodeHostAndPort(llvm::StringRef host_and_port,

References

tools/lldb/source/Host/common/Socket.cpp
  179   if (!DecodeHostAndPort(host_and_port, host_str, port_str, port, &error))
tools/lldb/source/Host/common/TCPSocket.cpp
  149   if (!DecodeHostAndPort(name, host_str, port_str, port, &error))
  185   if (!DecodeHostAndPort(name, host_str, port_str, port, &error))
tools/lldb/source/Host/common/UDPSocket.cpp
   67   if (!DecodeHostAndPort(name, host_str, port_str, port, &error))
tools/lldb/tools/lldb-server/Acceptor.cpp
  101     if (Socket::DecodeHostAndPort(name, host_str, port_str, port, nullptr))
tools/lldb/unittests/Host/SocketTest.cpp
   29   EXPECT_TRUE(Socket::DecodeHostAndPort("localhost:1138", host_str, port_str,
   36   EXPECT_FALSE(Socket::DecodeHostAndPort("google.com:65536", host_str, port_str,
   42   EXPECT_FALSE(Socket::DecodeHostAndPort("google.com:-1138", host_str, port_str,
   48   EXPECT_FALSE(Socket::DecodeHostAndPort("google.com:65536", host_str, port_str,
   55       Socket::DecodeHostAndPort("12345", host_str, port_str, port, &error));
   62       Socket::DecodeHostAndPort("*:0", host_str, port_str, port, &error));
   69       Socket::DecodeHostAndPort("*:65535", host_str, port_str, port, &error));
   76       Socket::DecodeHostAndPort("[::1]:12345", host_str, port_str, port, &error));
   83       Socket::DecodeHostAndPort("[abcd:12fg:AF58::1]:12345", host_str, port_str, port, &error));