HomeSort by: relevance | last modified time | path
    Searched refs:tcp_handle (Results 1 - 4 of 4) sorted by relevancy

  /src/external/mit/libuv/dist/test/
test-tcp-read-stop.c 26 static uv_tcp_t tcp_handle; variable
37 uv_close((uv_handle_t*) &tcp_handle, NULL);
44 (uv_stream_t*) &tcp_handle,
48 ASSERT_OK(uv_read_stop((uv_stream_t*) &tcp_handle));
55 ASSERT_OK(uv_read_start((uv_stream_t*) &tcp_handle,
67 ASSERT_OK(uv_tcp_init(uv_default_loop(), &tcp_handle));
69 &tcp_handle,
test-tcp-close-while-connecting.c 27 static uv_tcp_t tcp_handle; variable
55 uv_close((uv_handle_t*)&tcp_handle, close_cb);
73 ASSERT_OK(uv_tcp_init(loop, &tcp_handle));
75 &tcp_handle,
test-tcp-close.c 30 static uv_tcp_t tcp_handle; variable
51 r = uv_write(req, (uv_stream_t*)&tcp_handle, &buf, 1, write_cb);
55 uv_close((uv_handle_t*)&tcp_handle, close_cb);
62 ASSERT_PTR_EQ(req->handle, (uv_stream_t*)&tcp_handle);
69 ASSERT_PTR_EQ(handle, (uv_handle_t*)&tcp_handle);
114 r = uv_tcp_init(loop, &tcp_handle);
118 &tcp_handle,
  /src/lib/libc/rpc/
xdr_rec.c 128 char *tcp_handle; member in struct:rec_strm
174 * tcp_handle is an opaque handle that is passed as the first parameter to
184 char *tcp_handle,
185 /* like read, but pass it a tcp_handle, not sock */
187 /* like write, but pass it a tcp_handle, not sock */
222 rstrm->tcp_handle = tcp_handle;
348 pos = lseek((int)(u_long)rstrm->tcp_handle, (off_t)0, 1);
542 n = rstrm->readit(rstrm->tcp_handle, rstrm->in_hdrp,
579 n = rstrm->readit(rstrm->tcp_handle,
    [all...]

Completed in 28 milliseconds