Home
last modified time | relevance | path

Searched refs:tcpHandle (Results 1 – 4 of 4) sorted by relevance

/developtools/hdc/src/common/
Dbase.h27 void SetTcpOptions(uv_tcp_t *tcpHandle, int bufMaxSize = HDC_SOCKETPAIR_SIZE);
Dbase.cpp292 void SetTcpOptions(uv_tcp_t *tcpHandle, int bufMaxSize) in SetTcpOptions() argument
294 if (!tcpHandle) { in SetTcpOptions()
297 uv_tcp_keepalive(tcpHandle, 1, GLOBAL_TIMEOUT); in SetTcpOptions()
301 uv_recv_buffer_size((uv_handle_t *)tcpHandle, &bufMaxSize); in SetTcpOptions()
302 uv_send_buffer_size((uv_handle_t *)tcpHandle, &bufMaxSize); in SetTcpOptions()
Duart.h142 virtual void SetTcpOptions(uv_tcp_t *tcpHandle);
Duart.cpp31 void ExternInterface::SetTcpOptions(uv_tcp_t *tcpHandle) in SetTcpOptions() argument
33 return Base::SetTcpOptions(tcpHandle); in SetTcpOptions()