HomeSort by relevance Sort by last modified time
    Searched refs:fileno (Results 176 - 200 of 445) sorted by null

1 2 3 4 5 6 78 91011>>

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_pty.py 237 masters = [s.fileno() for s in socketpair]
266 masters = [s.fileno() for s in socketpair]
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_poll.py 84 fd = f.fileno()
109 def fileno(self): member in class:PollTests.poll_unit_tests.Almost
110 return 'fileno'
test_pty.py 237 masters = [s.fileno() for s in socketpair]
266 masters = [s.fileno() for s in socketpair]
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()
  /system/core/sh/
show.c 419 if ((flags = fcntl(fileno(tracefile), F_GETFL, 0)) >= 0)
420 fcntl(fileno(tracefile), F_SETFL, flags | O_APPEND);
  /external/libpng/contrib/gregbook/
wpng.c 308 setmode(fileno(stdin), O_BINARY);
309 setmode(fileno(stdout), O_BINARY);
311 if ((wpng_info.infile = fdopen(fileno(stdin), "rb")) == NULL) {
316 if ((wpng_info.outfile = fdopen(fileno(stdout), "wb")) == NULL) {
439 (keybd = fdopen(fileno(stderr), "r")) != NULL &&
  /external/bzip2/
bzip2.c 107 int retVal = setmode ( fileno ( fd ), \
119 int retVal = setmode ( fileno ( fd ), \
148 int retVal = setmode ( fileno ( fd ), \
369 Int32 fd = fileno ( zStream );
485 Int32 fd = fileno ( stream );
    [all...]
  /external/chromium_org/third_party/openssl/openssl/crypto/ui/
ui_openssl.c 122 * sigaction and fileno included. -pedantic would be more appropriate for
503 if (TTY_get(fileno(tty_in),&tty_orig) == -1)
539 if (is_a_tty && (TTY_set(fileno(tty_in),&tty_new) == -1))
561 if (is_a_tty && (TTY_set(fileno(tty_in),&tty_new) == -1))
  /external/chromium_org/v8/src/
platform-openbsd.cc 155 mmap(0, size, PROT_READ | PROT_WRITE, MAP_SHARED, fileno(file), 0);
170 mmap(0, size, PROT_READ | PROT_WRITE, MAP_SHARED, fileno(file), 0);
257 fileno(f), 0);
  /external/openssl/crypto/ui/
ui_openssl.c 122 * sigaction and fileno included. -pedantic would be more appropriate for
503 if (TTY_get(fileno(tty_in),&tty_orig) == -1)
539 if (is_a_tty && (TTY_set(fileno(tty_in),&tty_new) == -1))
561 if (is_a_tty && (TTY_set(fileno(tty_in),&tty_new) == -1))
  /bionic/libc/upstream-netbsd/libc/gen/
popen.c 135 close(fileno(old->fp)); /* don't allow a flush */
  /external/chromium/chrome/browser/
process_info_snapshot_mac_unittest.cc 106 fds_to_remap.push_back(std::make_pair(fileno(stderr), 2));
  /external/chromium_org/chrome/browser/
process_info_snapshot_mac_unittest.cc 108 fds_to_remap.push_back(std::make_pair(fileno(stderr), 2));
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/
platforminfo.py 109 packed = fcntl.ioctl(sys.stderr.fileno(), termios.TIOCGWINSZ, '\0' * 8)
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/
server_process_unittest.py 59 def fileno(self): member in class:MockFile
  /external/grub/lib/
device.c 453 if (ioctl (fileno (fp), CDROM_GET_CAPABILITY, 0) >= 0)
461 if (fstat (fileno (fp), &st))
468 && ioctl (fileno (fp), HDIO_GETGEO, &hdg))
476 if (ioctl (fileno (fp), CDIOCCLRDEBUG, 0) >= 0)
  /external/iproute2/misc/
ifstat.c 697 if (flock(fileno(hist_fp), LOCK_EX)) {
701 if (fstat(fileno(hist_fp), &stb) != 0) {
719 ftruncate(fileno(hist_fp), 0);
761 ftruncate(fileno(hist_fp), 0);
nstat.c 549 if (flock(fileno(hist_fp), LOCK_EX)) {
553 if (fstat(fileno(hist_fp), &stb) != 0) {
571 ftruncate(fileno(hist_fp), 0);
615 ftruncate(fileno(hist_fp), 0);
  /external/zlib/src/examples/
zpipe.c 23 # define SET_BINARY_MODE(file) setmode(fileno(file), O_BINARY)
  /frameworks/native/cmds/screenshot/
screenshot.c 27 fb = fileno(fb_in);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
asyncore.py 304 self._fileno = sock.fileno()
638 def fileno(self): member in class:.file_wrapper
647 fd = fd.fileno()
658 self._fileno = self.socket.fileno()
getpass.py 53 fd = sys.stdin.fileno()

Completed in 1254 milliseconds

1 2 3 4 5 6 78 91011>>