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

  /src/external/mit/libuv/dist/src/unix/
pipe.c 525 if ((err = uv__cloexec(temp[0], 1)))
528 if ((err = uv__cloexec(temp[1], 1)))
tcp.c 652 if ((err = uv__cloexec(temp[0], 1)))
654 if ((err = uv__cloexec(temp[1], 1)))
epoll.c 38 uv__cloexec(fd, 1);
core.c 525 err = uv__cloexec(sockfd, 1);
578 err = uv__cloexec(peerfd, 1);
700 int uv__cloexec(int fd, int set) { function
747 uv__cloexec(*pfd, 1);
807 if (uv__cloexec(fd, 1) && fd > 15)
1130 err = uv__cloexec(fd, 1);
1184 err = uv__cloexec(newfd, 1);
internal.h 247 int uv__cloexec(int fd, int set);
process.c 336 n = uv__cloexec(pipes[fd][1], 1);
363 n = uv__cloexec(use_fd, 0);
kqueue.c 59 uv__cloexec(loop->backend_fd, 1);
sunos.c 78 err = uv__cloexec(fd, 1);
fs.c 347 /* In case of failure `uv__cloexec` will leave error in `errno`,
350 if (r >= 0 && uv__cloexec(r, 1) != 0) {
378 /* In case of failure `uv__cloexec` will leave error in `errno`,
381 if (r >= 0 && uv__cloexec(r, 1) != 0) {

Completed in 72 milliseconds