HomeSort by relevance Sort by last modified time
    Searched refs:F_SETFL (Results 1 - 25 of 264) sorted by null

1 2 3 4 5 6 7 8 91011

  /external/strace/xlat/
fcntlcmds.in 6 F_SETFL 4
fcntlcmds.h 14 #if !(defined(F_SETFL) || (defined(HAVE_DECL_F_SETFL) && HAVE_DECL_F_SETFL))
15 # define F_SETFL 4
97 XLAT(F_SETFL),
  /external/libdaemon/libdaemon/
dnonblock.c 48 return fcntl(fd, F_SETFL, c);
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_fcntl.py 68 rv = fcntl.fcntl(self.f.fileno(), fcntl.F_SETFL, os.O_NONBLOCK)
80 rv = fcntl.fcntl(self.f, fcntl.F_SETFL, os.O_NONBLOCK)
91 self.assertRaises(ValueError, fcntl.fcntl, -1, fcntl.F_SETFL, os.O_NONBLOCK)
92 self.assertRaises(ValueError, fcntl.fcntl, F(-1), fcntl.F_SETFL, os.O_NONBLOCK)
93 self.assertRaises(TypeError, fcntl.fcntl, 'spam', fcntl.F_SETFL, os.O_NONBLOCK)
94 self.assertRaises(TypeError, fcntl.fcntl, F('spam'), fcntl.F_SETFL, os.O_NONBLOCK)
97 fcntl.F_SETFL, os.O_NONBLOCK)
99 fcntl.F_SETFL, os.O_NONBLOCK)
101 fcntl.F_SETFL, os.O_NONBLOCK)
103 fcntl.F_SETFL, os.O_NONBLOCK
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_fcntl.py 68 rv = fcntl.fcntl(self.f.fileno(), fcntl.F_SETFL, os.O_NONBLOCK)
80 rv = fcntl.fcntl(self.f, fcntl.F_SETFL, os.O_NONBLOCK)
91 self.assertRaises(ValueError, fcntl.fcntl, -1, fcntl.F_SETFL, os.O_NONBLOCK)
92 self.assertRaises(ValueError, fcntl.fcntl, F(-1), fcntl.F_SETFL, os.O_NONBLOCK)
93 self.assertRaises(TypeError, fcntl.fcntl, 'spam', fcntl.F_SETFL, os.O_NONBLOCK)
94 self.assertRaises(TypeError, fcntl.fcntl, F('spam'), fcntl.F_SETFL, os.O_NONBLOCK)
97 fcntl.F_SETFL, os.O_NONBLOCK)
99 fcntl.F_SETFL, os.O_NONBLOCK)
101 fcntl.F_SETFL, os.O_NONBLOCK)
103 fcntl.F_SETFL, os.O_NONBLOCK
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_fcntl.py 68 rv = fcntl.fcntl(self.f.fileno(), fcntl.F_SETFL, os.O_NONBLOCK)
80 rv = fcntl.fcntl(self.f, fcntl.F_SETFL, os.O_NONBLOCK)
91 self.assertRaises(ValueError, fcntl.fcntl, -1, fcntl.F_SETFL, os.O_NONBLOCK)
92 self.assertRaises(ValueError, fcntl.fcntl, F(-1), fcntl.F_SETFL, os.O_NONBLOCK)
93 self.assertRaises(TypeError, fcntl.fcntl, 'spam', fcntl.F_SETFL, os.O_NONBLOCK)
94 self.assertRaises(TypeError, fcntl.fcntl, F('spam'), fcntl.F_SETFL, os.O_NONBLOCK)
97 fcntl.F_SETFL, os.O_NONBLOCK)
99 fcntl.F_SETFL, os.O_NONBLOCK)
101 fcntl.F_SETFL, os.O_NONBLOCK)
103 fcntl.F_SETFL, os.O_NONBLOCK
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_fcntl.py 68 rv = fcntl.fcntl(self.f.fileno(), fcntl.F_SETFL, os.O_NONBLOCK)
80 rv = fcntl.fcntl(self.f, fcntl.F_SETFL, os.O_NONBLOCK)
91 self.assertRaises(ValueError, fcntl.fcntl, -1, fcntl.F_SETFL, os.O_NONBLOCK)
92 self.assertRaises(ValueError, fcntl.fcntl, F(-1), fcntl.F_SETFL, os.O_NONBLOCK)
93 self.assertRaises(TypeError, fcntl.fcntl, 'spam', fcntl.F_SETFL, os.O_NONBLOCK)
94 self.assertRaises(TypeError, fcntl.fcntl, F('spam'), fcntl.F_SETFL, os.O_NONBLOCK)
97 fcntl.F_SETFL, os.O_NONBLOCK)
99 fcntl.F_SETFL, os.O_NONBLOCK)
101 fcntl.F_SETFL, os.O_NONBLOCK)
103 fcntl.F_SETFL, os.O_NONBLOCK
    [all...]
  /external/curl/lib/
nonblock.c 60 return sfcntl(sockfd, F_SETFL, flags | O_NONBLOCK);
62 return sfcntl(sockfd, F_SETFL, flags & (~O_NONBLOCK));
  /external/avahi/avahi-core/
fdutil.c 56 return fcntl(fd, F_SETFL, n|O_NONBLOCK);
  /system/connectivity/shill/
file_io.cc 55 return HANDLE_EINTR(fcntl(fd, F_SETFL, flags));
  /external/bison/lib/
pipe2.c 121 || fcntl (fd[1], F_SETFL, fcntl_flags | O_NONBLOCK) == -1
123 || fcntl (fd[0], F_SETFL, fcntl_flags | O_NONBLOCK) == -1)
  /system/bt/osi/src/
semaphore.c 81 if (fcntl(semaphore->fd, F_SETFL, flags | O_NONBLOCK) == -1) {
91 if (fcntl(semaphore->fd, F_SETFL, flags) == -1)
  /cts/suite/audio_quality/lib/src/
ClientSocket.cpp 88 if (fcntl(mSocket, F_SETFL, flOriginal | O_NONBLOCK) == -1) {
134 fcntl(mSocket, F_SETFL, flOriginal); // now blocking again
  /external/libchrome/sandbox/linux/services/
scoped_process_unittest.cc 86 ASSERT_EQ(0, fcntl(pipe_fds[0], F_SETFL, O_NONBLOCK));
121 ASSERT_EQ(0, fcntl(pipe_fds[0], F_SETFL, O_NONBLOCK));
  /external/mesa3d/src/gallium/auxiliary/util/
u_network.c 182 fcntl(s, F_SETFL, old & ~O_NONBLOCK);
184 fcntl(s, F_SETFL, old | O_NONBLOCK);
  /external/tlsdate/src/events/
time_set.c 130 if (fcntl (from_fds[0], F_SETFL, O_NONBLOCK) < 0)
136 if (fcntl (to_fds[1], F_SETFL, O_NONBLOCK) < 0)
route_up.c 73 if (fcntl (fd, F_SETFL, O_NONBLOCK) < 0)
  /system/update_engine/payload_consumer/
file_descriptor.cc 110 if ((flags & O_DIRECT) == 0 && fcntl(fd_, F_SETFL, flags | O_DIRECT) == -1) {
118 if ((flags & O_DIRECT) == 0 && fcntl(fd_, F_SETFL, flags) == -1) {
  /bootable/recovery/minadbd/
fuse_adb_provider_test.cpp 37 fcntl(host_socket, F_SETFL, O_NONBLOCK);
  /development/ndk/platforms/android-3/include/asm-generic/
fcntl.h 68 #define F_SETFL 4
  /external/android-clat/
tun.c 77 return fcntl(fd, F_SETFL, flags | O_NONBLOCK);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/asm-generic/
fcntl.h 62 #define F_SETFL 4 /* set file->f_flags */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/asm-generic/
fcntl.h 95 #define F_SETFL 4 /* set file->f_flags */
  /prebuilts/ndk/current/platforms/android-12/arch-arm/usr/include/asm-generic/
fcntl.h 68 #define F_SETFL 4
  /prebuilts/ndk/current/platforms/android-12/arch-mips/usr/include/asm-generic/
fcntl.h 68 #define F_SETFL 4

Completed in 531 milliseconds

1 2 3 4 5 6 7 8 91011