HomeSort by relevance Sort by last modified time
    Searched refs:fcntl (Results 151 - 175 of 4760) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/valgrind/memcheck/tests/
mmaptest.c 3 #include <fcntl.h>
  /external/valgrind/none/tests/
fdleak_dup2.c 2 #include <fcntl.h>
  /hardware/qcom/display/msm8909/sdm/libs/hwc/
hwc_buffer_sync_handler.h 35 #include <fcntl.h>
  /hardware/qcom/display/msm8909w_3100/sdm/libs/hwc/
hwc_buffer_sync_handler.h 35 #include <fcntl.h>
  /hardware/qcom/display/msm8996/sdm/libs/hwc/
hwc_buffer_sync_handler.h 35 #include <fcntl.h>
  /hardware/qcom/display/msm8998/sdm/libs/hwc2/
hwc_buffer_sync_handler.h 35 #include <fcntl.h>
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/i386-linux-gnu/sys/
file.h 25 # include <fcntl.h>
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/
eventpoll.h 18 #include <linux/fcntl.h>
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/x86_64-linux-gnu/sys/
file.h 25 # include <fcntl.h>
  /prebuilts/go/darwin-x86/src/syscall/
forkpipe_bsd.go 14 _, err = fcntl(p[0], F_SETFD, FD_CLOEXEC)
18 _, err = fcntl(p[1], F_SETFD, FD_CLOEXEC)
  /prebuilts/go/linux-x86/src/syscall/
forkpipe_bsd.go 14 _, err = fcntl(p[0], F_SETFD, FD_CLOEXEC)
18 _, err = fcntl(p[1], F_SETFD, FD_CLOEXEC)
  /system/core/libnativebridge/tests/
PreInitializeNativeBridgeFail1_test.cpp 21 #include <fcntl.h>
PreInitializeNativeBridgeFail2_test.cpp 19 #include <fcntl.h>
  /system/core/logcat/
logcat_system.cpp 18 #include <fcntl.h>
  /external/chromium-trace/catapult/common/py_utils/py_utils/
lock.py 26 import fcntl # pylint: disable=import-error
27 LOCK_EX = fcntl.LOCK_EX
28 LOCK_SH = fcntl.LOCK_SH
29 LOCK_NB = fcntl.LOCK_NB
107 fcntl.flock(target_file.fileno(), flags)
117 fcntl.flock(target_file.fileno(), fcntl.LOCK_UN)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
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...]
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/tests/
fcntl_test.cpp 20 #include <fcntl.h>
29 // Glibc v2.19 doesn't include these in fcntl.h so host builds will fail without.
35 TEST(fcntl, fcntl_smoke) {
39 int flags = fcntl(fd, F_GETFD);
43 int rc = fcntl(fd, F_SETFD, FD_CLOEXEC);
46 flags = fcntl(fd, F_GETFD);
53 TEST(fcntl, open_open64) {
65 TEST(fcntl, openat_openat64) {
77 TEST(fcntl, creat_creat64) {
84 TEST(fcntl, posix_fadvise)
    [all...]
  /external/autotest/client/bin/
autotestd_monitor 4 import sys, os, signal, time, subprocess, fcntl
46 fcntl.flock(exit_code_file, fcntl.LOCK_EX)
55 fcntl.flock(exit_code_file, fcntl.LOCK_UN)
  /external/python/cpython2/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)
  /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)
  /prebuilts/gdb/darwin-x86/lib/python2.7/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)
  /prebuilts/gdb/linux-x86/lib/python2.7/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)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/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)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/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)

Completed in 1050 milliseconds

1 2 3 4 5 67 8 91011>>