Searched refs:O_CLOEXEC (Results 1 – 7 of 7) sorted by relevance
154 #if !defined(O_CLOEXEC) && defined(__FreeBSD__)159 # define O_CLOEXEC 0x00100000 macro
301 #ifdef O_CLOEXEC in uv__fs_mkstemp()326 #ifdef O_CLOEXEC in uv__fs_mkstemp()329 r = uv__mkostemp(path, O_CLOEXEC); in uv__fs_mkstemp()371 #ifdef O_CLOEXEC in uv__fs_open()372 return open(req->path, req->flags | O_CLOEXEC, req->mode); in uv__fs_open()
510 int flags = O_CLOEXEC; in uv_pipe()
1045 #if defined(O_CLOEXEC) in uv__open_cloexec()1048 fd = open(path, flags | O_CLOEXEC); in uv__open_cloexec()1102 r = dup3(oldfd, newfd, O_CLOEXEC); in uv__dup2_cloexec()
647 loop->backend_fd = epoll_create1(O_CLOEXEC); in uv__platform_loop_init()973 sqe->open_flags = req->flags | O_CLOEXEC; in uv__iou_fs_open()
180 Equivalent to :man:`pipe(2)` with the `O_CLOEXEC` flag set.
2056 * unix: simplify open(O_CLOEXEC) feature detection (Ben Noordhuis)2187 * linux: use O_CLOEXEC instead of EPOLL_CLOEXEC (Ben Noordhuis)3957 * unix: use open(2) with O_CLOEXEC on OS X (Kári Tristan Helgason)4412 * unix: clean up uv_fs_open() O_CLOEXEC logic (Ben Noordhuis)
Completed in 39 milliseconds