HomeSort by relevance Sort by last modified time
    Searched refs:fcntl (Results 201 - 225 of 5496) sorted by null

1 2 3 4 5 6 7 891011>>

  /prebuilts/ndk/r11/platforms/android-24/arch-mips/usr/include/sys/
file.h 36 #include <fcntl.h>
  /prebuilts/ndk/r11/platforms/android-24/arch-mips64/usr/include/sys/
file.h 36 #include <fcntl.h>
  /prebuilts/ndk/r11/platforms/android-24/arch-x86/usr/include/sys/
file.h 36 #include <fcntl.h>
  /prebuilts/ndk/r11/platforms/android-24/arch-x86_64/usr/include/sys/
file.h 36 #include <fcntl.h>
  /prebuilts/ndk/r11/platforms/android-3/arch-arm/usr/include/sys/
file.h 36 #include <fcntl.h>
  /prebuilts/ndk/r11/platforms/android-4/arch-arm/usr/include/sys/
file.h 36 #include <fcntl.h>
  /prebuilts/ndk/r11/platforms/android-5/arch-arm/usr/include/sys/
file.h 36 #include <fcntl.h>
  /prebuilts/ndk/r11/platforms/android-8/arch-arm/usr/include/sys/
file.h 36 #include <fcntl.h>
  /prebuilts/ndk/r11/platforms/android-9/arch-arm/usr/include/sys/
file.h 36 #include <fcntl.h>
  /prebuilts/ndk/r11/platforms/android-9/arch-mips/usr/include/sys/
file.h 36 #include <fcntl.h>
  /prebuilts/ndk/r11/platforms/android-9/arch-x86/usr/include/sys/
file.h 36 #include <fcntl.h>
  /bionic/libc/arch-arm64/syscalls/
fcntl.S 5 ENTRY(fcntl) function
14 END(fcntl)
  /bionic/libc/arch-x86_64/syscalls/
fcntl.S 5 ENTRY(fcntl) function
15 END(fcntl)
  /external/valgrind/none/tests/
fcntl_setown.c 1 #include <fcntl.h>
17 if (fcntl(s, F_SETOWN, getpid()) < 0)
19 perror("fcntl(F_SETOWN)");
  /external/ltp/testcases/kernel/syscalls/fcntl/
fcntl13.c 25 * Testcase to test that fcntl() sets errno correctly.
37 #include <fcntl.h>
61 if (fcntl(1, F_BADCMD, 1) != -1)
62 tst_resm(TFAIL, "fcntl(2) failed to FAIL");
69 if (fcntl(1, F_SETLK, (void *)-1) != -1) {
70 tst_resm(TFAIL, "F_SETLK: fcntl(2) failed to FAIL");
78 if (fcntl(1, F_SETLKW, (void *)-1) != -1) {
79 tst_resm(TFAIL, "F_SETLKW: fcntl(2) failed to FAIL");
87 if (fcntl(1, F_GETLK, (void *)-1) != -1) {
88 tst_resm(TFAIL, "F_GETLK: fcntl(2) failed to FAIL")
    [all...]
  /external/bison/lib/
pipe2.c 23 #include <fcntl.h>
43 creating the pipe but later fail at changing fcntl, we want
115 On Unix platforms, O_NONBLOCK is defined by the system. Use fcntl(). */
120 if ((fcntl_flags = fcntl (fd[1], F_GETFL, 0)) < 0
121 || fcntl (fd[1], F_SETFL, fcntl_flags | O_NONBLOCK) == -1
122 || (fcntl_flags = fcntl (fd[0], F_GETFL, 0)) < 0
123 || fcntl (fd[0], F_SETFL, fcntl_flags | O_NONBLOCK) == -1)
131 if ((fcntl_flags = fcntl (fd[1], F_GETFD, 0)) < 0
132 || fcntl (fd[1], F_SETFD, fcntl_flags | FD_CLOEXEC) == -1
133 || (fcntl_flags = fcntl (fd[0], F_GETFD, 0)) <
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
posixfile.py 57 "fcntl.lockf() provides better locking", DeprecationWarning, 2)
117 import fcntl, os
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)
    [all...]
  /external/linux-kselftest/tools/testing/selftests/filesystems/
dnotify_test.c 2 #include <fcntl.h> /* in glibc 2.2 this has the needed
26 fcntl(fd, F_SETSIG, SIGRTMIN + 1);
27 fcntl(fd, F_NOTIFY, DN_MODIFY|DN_CREATE|DN_MULTISHOT);
  /external/ppp/pppd/plugins/radius/
lock.c 14 #include <fcntl.h>
27 res = fcntl(fd, F_SETLK, &fl);
45 return fcntl(fd, F_SETLK, &fl);
  /external/python/cpython2/Lib/
posixfile.py 57 "fcntl.lockf() provides better locking", DeprecationWarning, 2)
117 import fcntl, os
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
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
posixfile.py 57 "fcntl.lockf() provides better locking", DeprecationWarning, 2)
117 import fcntl, os
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
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
posixfile.py 57 "fcntl.lockf() provides better locking", DeprecationWarning, 2)
117 import fcntl, os
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
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
posixfile.py 57 "fcntl.lockf() provides better locking", DeprecationWarning, 2)
117 import fcntl, os
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
    [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
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
    [all...]
  /bionic/libc/bionic/
chmod.cpp 29 #include <fcntl.h>

Completed in 1038 milliseconds

1 2 3 4 5 6 7 891011>>