Home
last modified time | relevance | path

Searched refs:readh (Results 1 – 2 of 2) sorted by relevance

/third_party/libuv/test/
Dtest-pipe-getsockname.c213 HANDLE readh, writeh; in TEST_IMPL() local
219 r = CreatePipe(&readh, &writeh, NULL, 65536); in TEST_IMPL()
224 readfd = _open_osfhandle((intptr_t)readh, _O_RDONLY); in TEST_IMPL()
/third_party/libuv/src/win/
Dpipe.c348 HANDLE readh; in uv_pipe() local
356 err = uv__create_pipe_pair(&readh, &writeh, read_flags, write_flags, 0, (char*) &fds[0]); in uv_pipe()
359 temp[0] = _open_osfhandle((intptr_t) readh, 0); in uv_pipe()
365 CloseHandle(readh); in uv_pipe()