Lines Matching refs:buf
34 static uv_buf_t buf; variable
45 uv_buf_t* buf) { in alloc_cb() argument
49 buf->base = slab; in alloc_cb()
50 buf->len = sizeof(slab); in alloc_cb()
69 r = uv_udp_send(req, &client, &buf, 1, NULL, cl_send_cb); in cl_send_cb()
73 &buf, in cl_send_cb()
127 buf = uv_buf_init("EXIT", 4); in TEST_IMPL()
153 r = uv_udp_try_send(&client, &buf, 1, (const struct sockaddr*) &lo_addr); in TEST_IMPL()
155 r = uv_udp_try_send(&client, &buf, 1, NULL); in TEST_IMPL()
157 r = uv_udp_try_send(&client, &buf, 1, (const struct sockaddr*) &ext_addr); in TEST_IMPL()
170 r = uv_udp_try_send(&client, &buf, 1, (const struct sockaddr*) &lo_addr); in TEST_IMPL()
172 r = uv_udp_try_send(&client, &buf, 1, NULL); in TEST_IMPL()
180 &buf, in TEST_IMPL()
185 r = uv_udp_send(&req, &client, &buf, 1, NULL, cl_send_cb); in TEST_IMPL()