Lines Matching refs:pipe_client
39 static uv_pipe_t pipe_client; variable
48 ASSERT(handle == (uv_handle_t*) &pipe_client || in pipe_close_cb()
63 r = uv_pipe_getpeername(&pipe_client, buf, &len); in pipe_client_connect_cb()
70 r = uv_pipe_getsockname(&pipe_client, buf, &len); in pipe_client_connect_cb()
76 uv_close((uv_handle_t*) &pipe_client, pipe_close_cb); in pipe_client_connect_cb()
130 r = uv_pipe_init(loop, &pipe_client, 0); in TEST_IMPL()
134 r = uv_pipe_getsockname(&pipe_client, buf, &len); in TEST_IMPL()
138 r = uv_pipe_getpeername(&pipe_client, buf, &len); in TEST_IMPL()
141 uv_pipe_connect(&connect_req, &pipe_client, TEST_PIPENAME, pipe_client_connect_cb); in TEST_IMPL()
144 r = uv_pipe_getsockname(&pipe_client, buf, &len); in TEST_IMPL()
148 r = uv_pipe_getpeername(&pipe_client, buf, &len); in TEST_IMPL()
222 r = uv_pipe_init(uv_default_loop(), &pipe_client, 0); in TEST_IMPL()
226 r = uv_pipe_open(&pipe_client, readfd); in TEST_IMPL()
228 r = uv_read_start((uv_stream_t*) &pipe_client, in TEST_IMPL()
233 r = uv_read_stop((uv_stream_t*)&pipe_client); in TEST_IMPL()
237 r = uv_pipe_getsockname(&pipe_client, buf1, &len1); in TEST_IMPL()
241 r = uv_read_start((uv_stream_t*)&pipe_client, in TEST_IMPL()
248 r = uv_pipe_getsockname(&pipe_client, buf2, &len2); in TEST_IMPL()
252 r = uv_read_stop((uv_stream_t*)&pipe_client); in TEST_IMPL()
259 uv_close((uv_handle_t*)&pipe_client, pipe_close_cb); in TEST_IMPL()