Lines Matching defs:host_and_port
148 Socket::TcpConnect(llvm::StringRef host_and_port,
151 LLDB_LOG(log, "host_and_port = {0}", host_and_port);
159 error = connect_socket->Connect(host_and_port);
167 Socket::TcpListen(llvm::StringRef host_and_port, bool child_processes_inherit,
170 LLDB_LOG(log, "host_and_port = {0}", host_and_port);
175 Status error = listen_socket->Listen(host_and_port, backlog);
183 Socket::UdpConnect(llvm::StringRef host_and_port,
185 return UDPSocket::Connect(host_and_port, child_processes_inherit);
188 llvm::Expected<Socket::HostAndPort> Socket::DecodeHostAndPort(llvm::StringRef host_and_port) {
192 if (g_regex.match(host_and_port, &matches)) {
202 if (to_integer(host_and_port, ret.port, 10))
208 host_and_port.str().c_str());