Home
last modified time | relevance | path

Searched refs:O_CLOEXEC (Results 1 – 15 of 15) sorted by relevance

/external/kernel-headers/original/asm-generic/
Dfcntl.h61 #ifndef O_CLOEXEC
62 #define O_CLOEXEC 02000000 /* set close_on_exec */ macro
/external/qemu/
Dosdep.c102 #ifdef O_CLOEXEC in qemu_open()
103 ret = open(name, flags | O_CLOEXEC, mode); in qemu_open()
Doslib-posix.c99 ret = pipe2(pipefd, O_CLOEXEC); in qemu_pipe()
/external/libcap-ng/libcap-ng-0.7/utils/
Dfilecap.c52 int fd = open(fpath, O_RDONLY|O_CLOEXEC); in check_file()
172 int fd = open(path, O_WRONLY|O_NOFOLLOW|O_CLOEXEC); in main()
Dpscap.c89 fd = open(buf, O_RDONLY|O_CLOEXEC, 0); in main()
Dnetcap.c75 fd = open(buf, O_RDONLY|O_CLOEXEC, 0); in collect_process_info()
/external/zlib/src/
Dgzlib.c99 #ifdef O_CLOEXEC
144 #ifdef O_CLOEXEC
221 #ifdef O_CLOEXEC
222 (cloexec ? O_CLOEXEC : 0) |
DChangeLog20 - Add "x" (O_EXCL) and "e" (O_CLOEXEC) modes support to gzopen()
/external/kernel-headers/original/asm-mips/
Dsocket.h120 #define SOCK_CLOEXEC O_CLOEXEC
/external/bluetooth/bluedroid/btif/co/
Dbta_hh_co.c255 p_dev->fd = open(dev_path, O_RDWR | O_CLOEXEC); in bta_hh_co_open()
281 p_dev->fd = open(dev_path, O_RDWR | O_CLOEXEC); in bta_hh_co_open()
/external/dbus/dbus/
Ddbus-spawn.c816 retval = pipe2 (p, O_CLOEXEC); in make_pipe()
/external/strace/
DNEWS149 * Print O_CLOEXEC, MSG_CMSG_CLOEXEC flag bits.
Dfile.c326 #ifdef O_CLOEXEC
327 { O_CLOEXEC, "O_CLOEXEC" },
DChangeLog-CVS1000 * file.c (open_mode_flags): Add O_CLOEXEC.
/external/webkit/Source/WebCore/
DChangeLog-2009-06-1638193 (WebCore::ResourceHandle::startHttp): Don't use O_CLOEXEC for now.