HomeSort by relevance Sort by last modified time
    Searched full:fileno (Results 76 - 100 of 850) sorted by null

1 2 34 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)
72 rv = fcntl.fcntl(self.f.fileno(), fcntl.F_SETLKW, lockdata)
89 def fileno(self): member in class:TestFcntl.test_fcntl_bad_file.F
test_poll.py 84 fd = f.fileno()
109 def fileno(self): member in class:PollTests.poll_unit_tests.Almost
110 return 'fileno'
test_fileio.py 110 % (self.f.fileno(), self.f.mode))
129 methods = ['fileno', 'isatty', 'read', 'readinto',
170 os.close(f.fileno())
185 os.close(f.fileno())
233 f.fileno()
245 os.close(self.f.fileno())
test_posix.py 131 self.assertTrue(posix.fstatvfs(fp.fileno()))
142 posix.ftruncate(fp.fileno(), 0)
150 fd = posix.dup(fp.fileno())
166 posix.dup2(fp1.fileno(), fp2.fileno())
217 self.assertTrue(posix.fstat(fp.fileno()))
302 fd = test_file.fileno()
  /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)
72 rv = fcntl.fcntl(self.f.fileno(), fcntl.F_SETLKW, lockdata)
89 def fileno(self): member in class:TestFcntl.test_fcntl_bad_file.F
test_poll.py 84 fd = f.fileno()
109 def fileno(self): member in class:PollTests.poll_unit_tests.Almost
110 return 'fileno'
test_fileio.py 110 % (self.f.fileno(), self.f.mode))
129 methods = ['fileno', 'isatty', 'read', 'readinto',
170 os.close(f.fileno())
185 os.close(f.fileno())
233 f.fileno()
245 os.close(self.f.fileno())
test_posix.py 131 self.assertTrue(posix.fstatvfs(fp.fileno()))
142 posix.ftruncate(fp.fileno(), 0)
150 fd = posix.dup(fp.fileno())
166 posix.dup2(fp1.fileno(), fp2.fileno())
217 self.assertTrue(posix.fstat(fp.fileno()))
302 fd = test_file.fileno()
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/
server_process.py 146 fd = self._proc.stdout.fileno()
150 fd = self._proc.stderr.fileno()
266 out_fd = self._proc.stdout.fileno()
267 err_fd = self._proc.stderr.fileno()
307 out_fh = msvcrt.get_osfhandle(self._proc.stdout.fileno())
308 err_fh = msvcrt.get_osfhandle(self._proc.stderr.fileno())
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
fileinput.py 157 def fileno(): function
164 return _state.fileno()
188 filename(), lineno(), fileline(), isfirstline(), isstdin(), fileno(),
325 perm = os.fstat(self._file.fileno()).st_mode
362 def fileno(self): member in class:FileInput
365 return self._file.fileno()
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
fileinput.py 157 def fileno(): function
164 return _state.fileno()
188 filename(), lineno(), fileline(), isfirstline(), isstdin(), fileno(),
325 perm = os.fstat(self._file.fileno()).st_mode
362 def fileno(self): member in class:FileInput
365 return self._file.fileno()
  /external/bison/lib/
fseterr.c 63 fd = fileno (fp);
error.c 150 fileno (stdout) == 1
154 /* POSIX states that fileno (stdout) after fclose is unspecified. But in
157 stdout_fd = fileno (stdout);
  /external/chromium-trace/
systrace.py 159 err = os.read(adb.stderr.fileno(), 4096)
163 out = os.read(adb.stdout.fileno(), 4096)
187 err = os.read(adb.stderr.fileno(), 4096)
193 out = os.read(adb.stdout.fileno(), 4096)
  /external/e2fsprogs/lib/et/
com_err.c 34 int do_cr = 1, fd = fileno(stderr);
  /device/samsung/manta/recovery/
recovery_updater.c 65 fsync(fileno(f));
113 fsync(fileno(f));
  /external/chromium_org/third_party/libjingle/source/talk/examples/call/
console.cc 74 close(fileno(stdin));
102 const int fd = fileno(stdin);
  /external/chromium_org/third_party/libjingle/source/talk/examples/chat/
consoletask.cc 78 close(fileno(stdin));
106 const int fd = fileno(stdin);
  /external/chromium_org/third_party/openssl/openssl/crypto/rc4/
rc4.c 149 setmode(fileno(in),O_BINARY);
150 setmode(fileno(out),O_BINARY);
  /external/chromium_org/third_party/tlslite/tlslite/
FileObject.py 10 _fileobject class in socket.py. Note that fileno() is not
57 #def fileno(self):
  /external/chromium_org/tools/
sort-headers.py 28 fd = sys.stdin.fileno()
32 tty.setraw(sys.stdin.fileno())
  /external/openssl/crypto/rc4/
rc4.c 149 setmode(fileno(in),O_BINARY);
150 setmode(fileno(out),O_BINARY);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/multiprocessing/
connection.py 191 c1 = _multiprocessing.Connection(os.dup(s1.fileno()))
192 c2 = _multiprocessing.Connection(os.dup(s2.fileno()))
275 fd = duplicate(s.fileno())
308 fd = duplicate(s.fileno())
438 for attr in ('fileno', 'close', 'poll', 'recv_bytes', 'send_bytes'):
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/multiprocessing/
connection.py 191 c1 = _multiprocessing.Connection(os.dup(s1.fileno()))
192 c2 = _multiprocessing.Connection(os.dup(s2.fileno()))
275 fd = duplicate(s.fileno())
308 fd = duplicate(s.fileno())
438 for attr in ('fileno', 'close', 'poll', 'recv_bytes', 'send_bytes'):
  /external/zlib/src/test/
minigzip.c 38 # define SET_BINARY_MODE(file) setmode(fileno(file), O_BINARY)
54 # define fileno(file) file->__file macro
57 # include <unix.h> /* for fileno */
401 int ifd = fileno(in);
608 file = gzdopen(fileno(stdin), "rb");
612 file = gzdopen(fileno(stdout), outmode);
638 file = gzdopen(fileno(stdout), outmode);

Completed in 658 milliseconds

1 2 34 5 6 7 8 91011>>