Lines Matching defs:client
141 uv_udp_t client, client2;
150 r = uv_udp_init(uv_default_loop(), &client);
153 r = uv_udp_open(&client, sock);
156 r = uv_udp_bind(&client, (const struct sockaddr*) &addr, 0);
159 r = uv_udp_recv_start(&client, alloc_cb, recv_cb);
163 &client,
189 ASSERT_OK(client.send_queue_size);
197 uv_udp_t client;
205 r = uv_udp_init(uv_default_loop(), &client);
208 r = uv_udp_open(&client, sock1);
211 r = uv_udp_open(&client, sock2);
215 uv_close((uv_handle_t*) &client, NULL);
224 uv_udp_t client;
236 r = uv_udp_init(uv_default_loop(), &client);
239 r = uv_udp_open(&client, sock);
242 r = uv_udp_recv_start(&client, alloc_cb, recv_cb);
245 uv_close((uv_handle_t*) &client, NULL);
255 uv_udp_t client;
265 r = uv_udp_init(uv_default_loop(), &client);
271 r = uv_udp_open(&client, sock);
284 &client,
296 ASSERT_OK(client.send_queue_size);