HomeSort by relevance Sort by last modified time
    Searched refs:_fcntl (Results 1 - 4 of 4) sorted by null

  /bionic/libc/upstream-freebsd/
freebsd-compat.h 24 #define _fcntl fcntl macro
  /bionic/libc/upstream-freebsd/lib/libc/stdio/
fdopen.c 71 if ((fdflags = _fcntl(fd, F_GETFL, 0)) < 0)
82 if ((oflags & O_CLOEXEC) && _fcntl(fd, F_SETFD, FD_CLOEXEC) == -1) {
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
tempfile.py 43 import fcntl as _fcntl namespace
50 flags = _fcntl.fcntl(fd, _fcntl.F_GETFD, 0)
55 flags |= _fcntl.FD_CLOEXEC
56 _fcntl.fcntl(fd, _fcntl.F_SETFD, flags)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
tempfile.py 43 import fcntl as _fcntl namespace
50 flags = _fcntl.fcntl(fd, _fcntl.F_GETFD, 0)
55 flags |= _fcntl.FD_CLOEXEC
56 _fcntl.fcntl(fd, _fcntl.F_SETFD, flags)

Completed in 206 milliseconds