HomeSort by relevance Sort by last modified time
    Searched defs:fcntl (Results 26 - 50 of 106) sorted by null

12 3 4 5

  /prebuilts/go/linux-x86/src/runtime/
netpoll_solaris.go 91 func fcntl(fd, cmd int32, arg uintptr) int32 { func
116 fcntl(portfd, _F_SETFD, _FD_CLOEXEC)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_pty.py 3 #Skip these tests if either fcntl or termios is not available
4 fcntl = import_module('fcntl') variable
87 orig_flags = fcntl.fcntl(master_fd, fcntl.F_GETFL)
88 fcntl.fcntl(master_fd, fcntl.F_SETFL, orig_flags | os.O_NONBLOCK)
96 fcntl.fcntl(master_fd, fcntl.F_SETFL, orig_flags
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_pty.py 3 #Skip these tests if either fcntl or termios is not available
4 fcntl = import_module('fcntl') variable
87 orig_flags = fcntl.fcntl(master_fd, fcntl.F_GETFL)
88 fcntl.fcntl(master_fd, fcntl.F_SETFL, orig_flags | os.O_NONBLOCK)
96 fcntl.fcntl(master_fd, fcntl.F_SETFL, orig_flags
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
SimpleXMLRPCServer.py 111 import fcntl
113 fcntl = None variable
595 if fcntl is not None and hasattr(fcntl, 'FD_CLOEXEC'):
596 flags = fcntl.fcntl(self.fileno(), fcntl.F_GETFD)
597 flags |= fcntl.FD_CLOEXEC
598 fcntl.fcntl(self.fileno(), fcntl.F_SETFD, flags)
    [all...]
  /external/python/cpython2/Lib/
SimpleXMLRPCServer.py 111 import fcntl
113 fcntl = None variable
598 if fcntl is not None and hasattr(fcntl, 'FD_CLOEXEC'):
599 flags = fcntl.fcntl(self.fileno(), fcntl.F_GETFD)
600 flags |= fcntl.FD_CLOEXEC
601 fcntl.fcntl(self.fileno(), fcntl.F_SETFD, flags
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
SimpleXMLRPCServer.py 111 import fcntl
113 fcntl = None variable
598 if fcntl is not None and hasattr(fcntl, 'FD_CLOEXEC'):
599 flags = fcntl.fcntl(self.fileno(), fcntl.F_GETFD)
600 flags |= fcntl.FD_CLOEXEC
601 fcntl.fcntl(self.fileno(), fcntl.F_SETFD, flags
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
SimpleXMLRPCServer.py 111 import fcntl
113 fcntl = None variable
598 if fcntl is not None and hasattr(fcntl, 'FD_CLOEXEC'):
599 flags = fcntl.fcntl(self.fileno(), fcntl.F_GETFD)
600 flags |= fcntl.FD_CLOEXEC
601 fcntl.fcntl(self.fileno(), fcntl.F_SETFD, flags
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
SimpleXMLRPCServer.py 111 import fcntl
113 fcntl = None variable
598 if fcntl is not None and hasattr(fcntl, 'FD_CLOEXEC'):
599 flags = fcntl.fcntl(self.fileno(), fcntl.F_GETFD)
600 flags |= fcntl.FD_CLOEXEC
601 fcntl.fcntl(self.fileno(), fcntl.F_SETFD, flags
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
SimpleXMLRPCServer.py 111 import fcntl
113 fcntl = None variable
598 if fcntl is not None and hasattr(fcntl, 'FD_CLOEXEC'):
599 flags = fcntl.fcntl(self.fileno(), fcntl.F_GETFD)
600 flags |= fcntl.FD_CLOEXEC
601 fcntl.fcntl(self.fileno(), fcntl.F_SETFD, flags
    [all...]
  /external/python/cpython3/Lib/xmlrpc/
server.py 118 import fcntl
120 fcntl = None variable
    [all...]
  /external/wayland/tests/
os-wrappers-test.c 39 #include <fcntl.h>
66 real_fcntl = dlsym(RTLD_NEXT, "fcntl");
85 fcntl(int fd, int cmd, ...) function
  /device/linaro/bootloader/edk2/StdLib/LibC/Uefi/
SysCalls.c 32 #include <sys/fcntl.h>
271 /** The fcntl() function shall perform the operations described below on open
274 The available values for cmd are defined in <fcntl.h> and are as follows:
283 - F_GETFD - Get the file descriptor flags defined in <fcntl.h> that are
287 - F_SETFD - Set the file descriptor flags defined in <fcntl.h>, that are
294 <fcntl.h>, for the file description associated with fildes.
297 <fcntl.h>. File status flags and file access modes are
301 - F_SETFL - Set the file status flags, defined in <fcntl.h>, for the file
305 flags, as defined in <fcntl.h>, that are set in arg shall
322 The fcntl() function shall fail if:
352 fcntl (int fildes, int cmd, ...) function
    [all...]
  /external/valgrind/coregrind/
m_libcfile.c 61 newfd = VG_(fcntl)(oldfd, VKI_F_DUPFD, VG_(fd_hard_limit));
66 VG_(fcntl)(newfd, VKI_F_SETFD, VKI_FD_CLOEXEC);
120 if (0 == VG_(fcntl)(fd, VKI_F_GETPATH, (UWord)tmp)) {
489 if (VG_(fcntl)(oldfd, VKI_F_GETFL, 0) == -1)
504 Int VG_(fcntl) ( Int fd, Int cmd, Addr arg ) function
    [all...]
  /prebuilts/go/darwin-x86/src/syscall/
zsyscall_dragonfly_amd64.go 253 func fcntl(fd int, cmd int, arg int) (val int, err error) { func
zsyscall_freebsd_386.go 253 func fcntl(fd int, cmd int, arg int) (val int, err error) { func
zsyscall_freebsd_amd64.go 253 func fcntl(fd int, cmd int, arg int) (val int, err error) { func
zsyscall_freebsd_arm.go 253 func fcntl(fd int, cmd int, arg int) (val int, err error) { func
zsyscall_netbsd_386.go 253 func fcntl(fd int, cmd int, arg int) (val int, err error) { func
zsyscall_netbsd_amd64.go 253 func fcntl(fd int, cmd int, arg int) (val int, err error) { func
zsyscall_netbsd_arm.go 253 func fcntl(fd int, cmd int, arg int) (val int, err error) { func
zsyscall_openbsd_386.go 253 func fcntl(fd int, cmd int, arg int) (val int, err error) { func
zsyscall_openbsd_amd64.go 253 func fcntl(fd int, cmd int, arg int) (val int, err error) { func
zsyscall_openbsd_arm.go 253 func fcntl(fd int, cmd int, arg int) (val int, err error) { func
  /prebuilts/go/linux-x86/src/syscall/
zsyscall_dragonfly_amd64.go 253 func fcntl(fd int, cmd int, arg int) (val int, err error) { func
zsyscall_freebsd_386.go 253 func fcntl(fd int, cmd int, arg int) (val int, err error) { func

Completed in 588 milliseconds

12 3 4 5