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

1 2 3 4 5 6 7 8 91011

  /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/chromium_org/third_party/libusb/src/libusb/os/
poll_posix.c 39 ret = fcntl(pipefd[1], F_SETFL, ret | O_NONBLOCK);
  /external/chromium_org/mojo/common/test/
test_utils_posix.cc 23 fcntl(handle.fd, F_SETFL, original_flags & (~O_NONBLOCK)) != 0) {
29 fcntl(handle.fd, F_SETFL, original_flags);
44 fcntl(handle.fd, F_SETFL, original_flags & (~O_NONBLOCK)) != 0) {
50 fcntl(handle.fd, F_SETFL, original_flags);
  /external/chromium_org/remoting/host/
ipc_util_posix.cc 34 if (fcntl(pipe_fds[0], F_SETFL, O_NONBLOCK) == -1 ||
35 fcntl(pipe_fds[1], F_SETFL, O_NONBLOCK) == -1) {
  /external/chromium_org/content/renderer/pepper/
pepper_broker_unittest.cc 46 ASSERT_EQ(0, fcntl(fds[1], F_SETFL, O_NONBLOCK));
  /external/chromium_org/tools/android/forwarder2/
pipe_notifier.cc 24 fcntl(sender_fd_, F_SETFL, O_NONBLOCK);
  /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)
  /external/bluetooth/bluedroid/osi/src/
semaphore.c 75 if (fcntl(semaphore->fd, F_SETFL, flags | O_NONBLOCK) == -1) {
84 if (fcntl(semaphore->fd, F_SETFL, flags) == -1)
  /external/chromium_org/mojo/embedder/
platform_channel_pair_posix.cc 41 PCHECK(fcntl(fds[0], F_SETFL, O_NONBLOCK) == 0);
42 PCHECK(fcntl(fds[1], F_SETFL, O_NONBLOCK) == 0);
  /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/chromium_org/sandbox/linux/services/
scoped_process_unittest.cc 87 ASSERT_EQ(0, fcntl(pipe_fds[0], F_SETFL, O_NONBLOCK));
122 ASSERT_EQ(0, fcntl(pipe_fds[0], F_SETFL, O_NONBLOCK));
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
u_network.c 182 fcntl(s, F_SETFL, old & ~O_NONBLOCK);
184 fcntl(s, F_SETFL, old | 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/strace/xlat/
fcntlcmds.h 16 #if defined(F_SETFL) || (defined(HAVE_DECL_F_SETFL) && HAVE_DECL_F_SETFL)
17 XLAT(F_SETFL),
  /system/core/libcutils/
socket_network_client.c 74 if (fcntl(s, F_SETFL, flags | O_NONBLOCK) < 0) {
120 if (fcntl(s, F_SETFL, flags) < 0) {
  /development/ndk/platforms/android-3/header-patches/include/asm-generic/
fcntl.h 57 #define F_SETFL 4
  /development/ndk/platforms/android-3/include/asm-generic/
fcntl.h 68 #define F_SETFL 4
  /development/ndk/platforms/android-L/include/asm-generic/
fcntl.h 97 #define F_SETFL 4
  /external/chromium_org/base/
async_socket_io_handler_posix.cc 80 if (fcntl(socket, F_SETFL, O_NONBLOCK) == -1) {
  /external/lldb/tools/debugserver/source/
TTYState.cpp 61 result = fcntl (m_fd, F_SETFL, m_tflags);
  /external/qemu/distrib/sdl-1.2.15/src/video/ataricommon/
SDL_ataridevmouse.c 84 r = fcntl(handle, F_SETFL, r);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/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.11-4.8/sysroot/usr/include/asm-generic/
fcntl.h 62 #define F_SETFL 4 /* set file->f_flags */
  /prebuilts/ndk/4/platforms/android-3/arch-arm/usr/include/asm-generic/
fcntl.h 68 #define F_SETFL 4

Completed in 913 milliseconds

1 2 3 4 5 6 7 8 91011