HomeSort by relevance Sort by last modified time
    Searched refs:F_SETFD (Results 51 - 75 of 243) sorted by null

1 23 4 5 6 7 8 910

  /external/minijail/linux-x86/
libconstants.gen.c 611 #ifdef F_SETFD
612 { "F_SETFD", (unsigned long) F_SETFD },
613 #endif // F_SETFD
    [all...]
  /external/python/cpython2/Modules/
fcntlmodule.c 465 #ifdef F_SETFD
466 if (ins(d, "F_SETFD", (long)F_SETFD)) return -1;
  /external/python/cpython3/Modules/
fcntlmodule.c 471 #ifdef F_SETFD
472 if (PyModule_AddIntMacro(m, F_SETFD)) return -1;
  /art/runtime/
zip_archive.cc 216 int rc = fcntl(fd, F_SETFD, flags | FD_CLOEXEC);
218 PLOG(WARNING) << "fcntl(" << fd << ", F_SETFD, " << flags << ") failed";
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/PyMod-2.7.10/Python/
random.c 258 (void)fcntl(fd, F_SETFD, attr);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
posixfile.py 141 l_flags = fcntl.fcntl(file.fileno(), fcntl.F_SETFD, arg)
  /external/dhcpcd-6.8.2/
common.c 159 fcntl(ctx->log_fd, F_SETFD, f | FD_CLOEXEC) == -1)
  /external/e2fsprogs/lib/et/
error_message.c 260 fcntl(fd, F_SETFD, flags | FD_CLOEXEC);
  /external/ipsec-tools/
main.c 67 fcntl(control, F_SETFD, FD_CLOEXEC);
  /external/iptables/extensions/
libxt_bpf.c 133 if (fcntl(bi->fd, F_SETFD, FD_CLOEXEC) == -1) {
libxt_set.h 28 if (fcntl(sockfd, F_SETFD, FD_CLOEXEC) == -1) {
  /external/libusb/libusb/os/
linux_netlink.c 66 if (fcntl(fd, F_SETFD, flags | FD_CLOEXEC) == -1) {
  /external/mesa3d/src/loader/
loader.c 80 fcntl(fd, F_SETFD, fcntl(fd, F_GETFD) | FD_CLOEXEC);
  /external/perfetto/src/base/
unix_task_runner.cc 43 PERFETTO_CHECK(fcntl(fd, F_SETFD, FD_CLOEXEC) == 0);
  /external/python/cpython2/Lib/plat-irix5/
FILE.py 172 F_SETFD = 2
  /external/python/cpython2/Lib/
posixfile.py 141 l_flags = fcntl.fcntl(file.fileno(), fcntl.F_SETFD, arg)
  /external/python/cpython2/Python/
random.c 243 (void)fcntl(fd, F_SETFD, attr);
  /external/sl4a/ScriptingLayerForAndroid/jni/
com_googlecode_android_scripting_Exec.cpp 42 fcntl(ptm, F_SETFD, FD_CLOEXEC);
  /external/webrtc/webrtc/test/channel_transport/
udp_socket_posix.cc 64 if(fcntl(_socket, F_SETFD, FD_CLOEXEC) == -1)
  /prebuilts/gdb/darwin-x86/lib/python2.7/
posixfile.py 141 l_flags = fcntl.fcntl(file.fileno(), fcntl.F_SETFD, arg)
  /prebuilts/gdb/linux-x86/lib/python2.7/
posixfile.py 141 l_flags = fcntl.fcntl(file.fileno(), fcntl.F_SETFD, arg)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
posixfile.py 141 l_flags = fcntl.fcntl(file.fileno(), fcntl.F_SETFD, arg)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
posixfile.py 141 l_flags = fcntl.fcntl(file.fileno(), fcntl.F_SETFD, arg)
  /system/core/adb/
adbd_auth.cpp 186 fcntl(fd, F_SETFD, FD_CLOEXEC);
  /system/core/libsysutils/src/
SocketListener.cpp 91 fcntl(mSock, F_SETFD, FD_CLOEXEC);

Completed in 1280 milliseconds

1 23 4 5 6 7 8 910