• Home
  • Raw
  • Download

Lines Matching refs:TCPSocket

60 TCPSocket::TCPSocket(bool should_close, bool child_processes_inherit)  in TCPSocket()  function in TCPSocket
63 TCPSocket::TCPSocket(NativeSocket socket, const TCPSocket &listen_socket) in TCPSocket() function in TCPSocket
69 TCPSocket::TCPSocket(NativeSocket socket, bool should_close, in TCPSocket() function in TCPSocket
75 TCPSocket::~TCPSocket() { CloseListenSockets(); } in ~TCPSocket()
77 bool TCPSocket::IsValid() const { in IsValid()
82 uint16_t TCPSocket::GetLocalPortNumber() const { in GetLocalPortNumber()
98 std::string TCPSocket::GetLocalIPAddress() const { in GetLocalIPAddress()
110 uint16_t TCPSocket::GetRemotePortNumber() const { in GetRemotePortNumber()
120 std::string TCPSocket::GetRemoteIPAddress() const { in GetRemoteIPAddress()
132 std::string TCPSocket::GetRemoteConnectionURI() const { in GetRemoteConnectionURI()
140 Status TCPSocket::CreateSocket(int domain) { in CreateSocket()
151 Status TCPSocket::Connect(llvm::StringRef name) { in Connect()
188 Status TCPSocket::Listen(llvm::StringRef name, int backlog) { in Listen()
248 void TCPSocket::CloseListenSockets() { in CloseListenSockets()
254 Status TCPSocket::Accept(Socket *&conn_socket) { in Accept()
269 auto io_sp = IOObjectSP(new TCPSocket(socket.first, false, inherit)); in Accept()
284 std::unique_ptr<TCPSocket> accepted_socket; in Accept()
301 accepted_socket.reset(new TCPSocket(sock, *this)); in Accept()
314 int TCPSocket::SetOptionNoDelay() { in SetOptionNoDelay()
318 int TCPSocket::SetOptionReuseAddress() { in SetOptionReuseAddress()