Searched refs:tcp_error_create (Results 1 – 1 of 1) sorted by relevance
/external/grpc-grpc/src/core/lib/iomgr/ |
D | tcp_uv.cc | 69 static grpc_error* tcp_error_create(const char* desc, int status) { in tcp_error_create() function 109 error = tcp_error_create("TCP Read failed", nread); in uv_read_callback() 139 error = tcp_error_create("TCP Read failed at start", status); in uv_socket_read() 148 uv_socket->write_cb(socket, tcp_error_create("TCP Write failed", status)); in uv_write_callback() 193 return tcp_error_create("Failed to initialize UV tcp handle", status); in uv_socket_init_helper() 233 return tcp_error_create("getpeername failed", err); in uv_socket_getpeername() 242 return tcp_error_create("getsockname failed", err); in uv_socket_getsockname() 282 uv_socket->accept_error = tcp_error_create("accept failed", status); in uv_on_connect() 304 return tcp_error_create("Failed to bind to port", status); in uv_socket_bind() 311 return tcp_error_create("Failed to listen to port", status); in uv_socket_listen() [all …]
|