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

1 2 3 4 5

  /bionic/libc/arch-arm64/syscalls/
fcntl.S 5 ENTRY(fcntl) function
14 END(fcntl)
  /bionic/libc/arch-mips64/syscalls/
fcntl.S 5 ENTRY(fcntl) function
25 END(fcntl)
  /bionic/libc/arch-x86_64/syscalls/
fcntl.S 5 ENTRY(fcntl) function
15 END(fcntl)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_fcntl.py 1 """Test program for the fcntl C module.
14 fcntl = import_module('fcntl') variable
43 fcntl.F_WRLCK, 0)
45 lockdata = struct.pack('hhlllii', fcntl.F_WRLCK, 0, 0, 0, 0, 0, 0)
49 lockdata = struct.pack('hh'+start_len+'hh', fcntl.F_WRLCK, 0, 0, 0, 0, 0)
71 rv = fcntl.fcntl(self.f.fileno(), fcntl.F_SETFL, os.O_NONBLOCK)
73 print 'Status from fcntl with O_NONBLOCK: ', rv
    [all...]
test_ioctl.py 5 fcntl = import_module('fcntl') variable
15 r = fcntl.ioctl(tty, termios.TIOCGPGRP, " ")
34 r = fcntl.ioctl(tty, termios.TIOCGPGRP, " ")
51 r = fcntl.ioctl(tty, termios.TIOCGPGRP, buf, 1)
83 new_winsz = fcntl.ioctl(mfd, set_winsz_opcode_pos, our_winsz)
84 new_winsz = fcntl.ioctl(mfd, set_winsz_opcode_maybe_neg, our_winsz)
test_pty.py 3 #Skip these tests if either fcntl or termios is not available
4 fcntl = import_module('fcntl') variable
85 orig_flags = fcntl.fcntl(master_fd, fcntl.F_GETFL)
86 fcntl.fcntl(master_fd, fcntl.F_SETFL, orig_flags | os.O_NONBLOCK)
94 fcntl.fcntl(master_fd, fcntl.F_SETFL, orig_flags)
    [all...]
  /external/honggfuzz/examples/terminal-emulators/
libclose.c 6 #include <fcntl.h>
21 int fcntl(int __fd, int __cmd, ...) function
  /external/python/cpython2/Lib/test/
test_fcntl.py 1 """Test program for the fcntl C module.
13 # Skip test if no fcntl module.
14 fcntl = import_module('fcntl') variable
39 fcntl.F_WRLCK, 0)
41 lockdata = struct.pack('hhlllii', fcntl.F_WRLCK, 0, 0, 0, 0, 0, 0)
45 lockdata = struct.pack('hh'+start_len+'hh', fcntl.F_WRLCK, 0, 0, 0, 0, 0)
73 rv = fcntl.fcntl(self.f.fileno(), fcntl.F_SETFL, os.O_NONBLOCK
    [all...]
test_ioctl.py 5 fcntl = import_module('fcntl') variable
15 r = fcntl.ioctl(tty, termios.TIOCGPGRP, " ")
34 r = fcntl.ioctl(tty, termios.TIOCGPGRP, " ")
51 r = fcntl.ioctl(tty, termios.TIOCGPGRP, buf, 1)
83 new_winsz = fcntl.ioctl(mfd, set_winsz_opcode_pos, our_winsz)
84 new_winsz = fcntl.ioctl(mfd, set_winsz_opcode_maybe_neg, our_winsz)
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...]
  /external/python/cpython3/Lib/test/
test_ioctl.py 5 fcntl = import_module('fcntl') variable
15 r = fcntl.ioctl(tty, termios.TIOCGPGRP, " ")
34 r = fcntl.ioctl(tty, termios.TIOCGPGRP, " ")
51 r = fcntl.ioctl(tty, termios.TIOCGPGRP, buf, 1)
83 new_winsz = fcntl.ioctl(mfd, set_winsz_opcode_pos, our_winsz)
84 new_winsz = fcntl.ioctl(mfd, set_winsz_opcode_maybe_neg, our_winsz)
test_fcntl.py 1 """Test program for the fcntl C module.
11 # Skip test if no fcntl module.
12 fcntl = import_module('fcntl') variable
34 fcntl.F_WRLCK, 0)
36 lockdata = struct.pack('qqihhi', 0, 0, 0, fcntl.F_WRLCK, 0, 0)
38 lockdata = struct.pack('hhlllii', fcntl.F_WRLCK, 0, 0, 0, 0, 0, 0)
40 lockdata = struct.pack('hh'+start_len+'hh', fcntl.F_WRLCK, 0, 0, 0, 0, 0)
67 rv = fcntl.fcntl(self.f.fileno(), fcntl.F_SETFL, os.O_NONBLOCK
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_fcntl.py 1 """Test program for the fcntl C module.
15 fcntl = import_module('fcntl') variable
40 fcntl.F_WRLCK, 0)
42 lockdata = struct.pack('hhlllii', fcntl.F_WRLCK, 0, 0, 0, 0, 0, 0)
46 lockdata = struct.pack('hh'+start_len+'hh', fcntl.F_WRLCK, 0, 0, 0, 0, 0)
68 rv = fcntl.fcntl(self.f.fileno(), fcntl.F_SETFL, os.O_NONBLOCK)
70 print 'Status from fcntl with O_NONBLOCK: ', r
    [all...]
test_ioctl.py 5 fcntl = import_module('fcntl') variable
15 r = fcntl.ioctl(tty, termios.TIOCGPGRP, " ")
34 r = fcntl.ioctl(tty, termios.TIOCGPGRP, " ")
51 r = fcntl.ioctl(tty, termios.TIOCGPGRP, buf, 1)
83 new_winsz = fcntl.ioctl(mfd, set_winsz_opcode_pos, our_winsz)
84 new_winsz = fcntl.ioctl(mfd, set_winsz_opcode_maybe_neg, our_winsz)
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/gdb/linux-x86/lib/python2.7/test/
test_fcntl.py 1 """Test program for the fcntl C module.
15 fcntl = import_module('fcntl') variable
40 fcntl.F_WRLCK, 0)
42 lockdata = struct.pack('hhlllii', fcntl.F_WRLCK, 0, 0, 0, 0, 0, 0)
46 lockdata = struct.pack('hh'+start_len+'hh', fcntl.F_WRLCK, 0, 0, 0, 0, 0)
68 rv = fcntl.fcntl(self.f.fileno(), fcntl.F_SETFL, os.O_NONBLOCK)
70 print 'Status from fcntl with O_NONBLOCK: ', r
    [all...]
test_ioctl.py 5 fcntl = import_module('fcntl') variable
15 r = fcntl.ioctl(tty, termios.TIOCGPGRP, " ")
34 r = fcntl.ioctl(tty, termios.TIOCGPGRP, " ")
51 r = fcntl.ioctl(tty, termios.TIOCGPGRP, buf, 1)
83 new_winsz = fcntl.ioctl(mfd, set_winsz_opcode_pos, our_winsz)
84 new_winsz = fcntl.ioctl(mfd, set_winsz_opcode_maybe_neg, our_winsz)
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/darwin-x86/2.7.5/lib/python2.7/test/
test_fcntl.py 1 """Test program for the fcntl C module.
15 fcntl = import_module('fcntl') variable
40 fcntl.F_WRLCK, 0)
42 lockdata = struct.pack('hhlllii', fcntl.F_WRLCK, 0, 0, 0, 0, 0, 0)
46 lockdata = struct.pack('hh'+start_len+'hh', fcntl.F_WRLCK, 0, 0, 0, 0, 0)
68 rv = fcntl.fcntl(self.f.fileno(), fcntl.F_SETFL, os.O_NONBLOCK)
70 print 'Status from fcntl with O_NONBLOCK: ', r
    [all...]
test_ioctl.py 5 fcntl = import_module('fcntl') variable
15 r = fcntl.ioctl(tty, termios.TIOCGPGRP, " ")
34 r = fcntl.ioctl(tty, termios.TIOCGPGRP, " ")
51 r = fcntl.ioctl(tty, termios.TIOCGPGRP, buf, 1)
83 new_winsz = fcntl.ioctl(mfd, set_winsz_opcode_pos, our_winsz)
84 new_winsz = fcntl.ioctl(mfd, set_winsz_opcode_maybe_neg, our_winsz)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_fcntl.py 1 """Test program for the fcntl C module.
15 fcntl = import_module('fcntl') variable
40 fcntl.F_WRLCK, 0)
42 lockdata = struct.pack('hhlllii', fcntl.F_WRLCK, 0, 0, 0, 0, 0, 0)
46 lockdata = struct.pack('hh'+start_len+'hh', fcntl.F_WRLCK, 0, 0, 0, 0, 0)
68 rv = fcntl.fcntl(self.f.fileno(), fcntl.F_SETFL, os.O_NONBLOCK)
70 print 'Status from fcntl with O_NONBLOCK: ', r
    [all...]
test_ioctl.py 5 fcntl = import_module('fcntl') variable
15 r = fcntl.ioctl(tty, termios.TIOCGPGRP, " ")
34 r = fcntl.ioctl(tty, termios.TIOCGPGRP, " ")
51 r = fcntl.ioctl(tty, termios.TIOCGPGRP, buf, 1)
83 new_winsz = fcntl.ioctl(mfd, set_winsz_opcode_pos, our_winsz)
84 new_winsz = fcntl.ioctl(mfd, set_winsz_opcode_maybe_neg, our_winsz)
  /bionic/libc/bionic/
legacy_32_bit_support.cpp 32 #include <fcntl.h>
50 // For fcntl we use the fcntl64 system call to signal that we're using struct flock64.
51 int fcntl(int fd, int cmd, ...) { function
  /external/libmojo/third_party/catapult/devil/devil/utils/
cmd_helper.py 17 # fcntl is not available on Windows.
19 import fcntl
21 fcntl = None variable
216 assert fcntl, 'fcntl module is required'
220 fl = fcntl.fcntl(child_fd, fcntl.F_GETFL)
221 fcntl.fcntl(child_fd, fcntl.F_SETFL, fl | os.O_NONBLOCK
    [all...]
  /prebuilts/go/darwin-x86/src/runtime/
netpoll_solaris.go 91 func fcntl(fd, cmd int32, arg uintptr) int32 { func
116 fcntl(portfd, _F_SETFD, _FD_CLOEXEC)

Completed in 315 milliseconds

1 2 3 4 5