Home
last modified time | relevance | path

Searched refs:tcpListen (Results 1 – 2 of 2) sorted by relevance

/developtools/hdc/src/host/
Dserver_for_client.h62 uv_tcp_t tcpListen; variable
Dserver_for_client.cpp39 Base::TryCloseHandle((uv_handle_t *)&tcpListen); in Stop()
103 tcpListen.data = this; in SetTCPListen()
105 uv_tcp_init(loopMain, &tcpListen); in SetTCPListen()
114 rc = uv_tcp_bind(&tcpListen, (const struct sockaddr *)&addr, 0); in SetTCPListen()
124 rc = uv_tcp_bind(&tcpListen, (const struct sockaddr *)&addr4v, 0); in SetTCPListen()
139 rc = uv_listen((uv_stream_t *)&tcpListen, backLog, (uv_connection_cb)AcceptClient); in SetTCPListen()