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

1 2 3

  /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)
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/syscalls/
fcntl.c 10 int fcntl(int fd, int cmd, ...) { function
  /development/ndk/sources/android/libportable/arch-x86/
fcntl.c 18 #include <fcntl.h>
24 int WRAP(fcntl)(int fd, int cmd, ...) function
  /external/chromium_org/tools/gyp/pylib/gyp/
flock_tool.py 9 import fcntl namespace
39 # where fcntl.flock(fd, LOCK_EX) always fails
43 op = struct.pack('hhllhhl', fcntl.F_WRLCK, 0, 0, 0, 0, 0, 0)
44 fcntl.fcntl(fd, fcntl.F_SETLK, op)
  /bionic/libc/bionic/
legacy_32_bit_support.cpp 30 #include <fcntl.h>
47 // For fcntl we use the fcntl64 system call to signal that we're using struct flock64.
48 int fcntl(int fd, int cmd, ...) { function
  /external/chromium_org/build/android/pylib/
cmd_helper.py 16 # fcntl is not available on Windows.
18 import fcntl namespace
20 fcntl = None variable
132 assert fcntl, 'fcntl module is required'
143 fl = fcntl.fcntl(child_fd, fcntl.F_GETFL)
144 fcntl.fcntl(child_fd, fcntl.F_SETFL, fl | os.O_NONBLOCK
    [all...]
ports.py 8 import fcntl namespace
53 fcntl.flock(fp_lock, fcntl.LOCK_EX)
73 fcntl.flock(fp_lock, fcntl.LOCK_UN)
  /external/chromium_org/build/android/
surface_stats.py 49 import fcntl, termios, struct namespace
53 fcntl.ioctl(0, termios.TIOCGWINSZ,
  /external/lldb/test/pexpect-2.4/examples/
script.py 22 import signal, fcntl, termios, struct namespace
89 a = struct.unpack ('HHHH', fcntl.ioctl(sys.stdout.fileno(), TIOCGWINSZ , s))
  /development/ndk/sources/android/libportable/arch-mips/
fcntl.c 18 #include <fcntl.h>
70 * Maps a fcntl portable cmd to a native command.
289 int WRAP(fcntl)(int fd, int portable_cmd, ...) function
  /external/bison/lib/
fcntl.c 23 #include <fcntl.h>
31 # define rpl_fcntl fcntl
33 #undef fcntl macro
152 native fcntl. An unrecognized ACTION returns -1 with errno set to
194 int flags = fcntl (fd, F_GETFD);
200 result = fcntl (fd, action, target);
201 if (0 <= result && fcntl (fd, F_SETFD, flags) == -1)
235 result = fcntl (fd, action, target);
256 int flags = fcntl (result, F_GETFD);
257 if (flags < 0 || fcntl (result, F_SETFD, flags | FD_CLOEXEC) == -1
    [all...]
error.c 88 # include <fcntl.h>
99 /* The gnulib override of fcntl is not needed in this file. */
100 # undef fcntl macro
130 There is no fcntl, and the gnulib replacement fcntl does not support
135 # error Please port fcntl to your platform
137 return 0 <= fcntl (fd, F_GETFL);
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/
platforminfo.py 113 import fcntl namespace
116 packed = fcntl.ioctl(sys.stderr.fileno(), termios.TIOCGWINSZ, '\0' * 8)
  /external/chromium_org/tools/telemetry/telemetry/core/platform/profiler/
monsoon.py 8 Currently Unix-only. Relies on fcntl, /dev, and /tmp.
68 import fcntl namespace
69 fcntl.lockf(self._tempfile, fcntl.LOCK_EX | fcntl.LOCK_NB)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
posixfile.py 57 "fcntl.lockf() provides better locking", DeprecationWarning, 2)
117 import fcntl, os namespace
133 cur_fl = fcntl.fcntl(file.fileno(), fcntl.F_GETFL, 0)
137 l_flags = fcntl.fcntl(file.fileno(), fcntl.F_SETFL, l_flags)
141 l_flags = fcntl.fcntl(file.fileno(), fcntl.F_SETFD, arg
154 import struct, fcntl namespace
    [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)
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/
posixfile.py 57 "fcntl.lockf() provides better locking", DeprecationWarning, 2)
117 import fcntl, os namespace
133 cur_fl = fcntl.fcntl(file.fileno(), fcntl.F_GETFL, 0)
137 l_flags = fcntl.fcntl(file.fileno(), fcntl.F_SETFL, l_flags)
141 l_flags = fcntl.fcntl(file.fileno(), fcntl.F_SETFD, arg
154 import struct, fcntl namespace
    [all...]
  /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)
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...]
  /cts/tools/utils/
monsoon.py 38 import fcntl namespace
94 fcntl.lockf(self._tempfile, fcntl.LOCK_EX | fcntl.LOCK_NB)

Completed in 1154 milliseconds

1 2 3