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

1 2 3 4 5 6 7

  /bionic/libc/stdio/
fileno.c 1 /* $OpenBSD: fileno.c,v 1.5 2005/08/08 08:05:36 espie Exp $ */
38 * A subroutine version of the macro fileno.
40 #undef fileno macro
43 fileno(FILE *fp) function
  /external/dropbear/
netbsd_getpass.c 93 (void)tcgetattr(fileno(fp), &term);
96 (void)tcsetattr(fileno(fp), TCSAFLUSH /*|TCSASOFT*/, &term);
105 (void)write(fileno(outfp), "\n", 1);
108 (void)tcsetattr(fileno(fp), TCSAFLUSH/*|TCSASOFT*/, &term);
  /external/webkit/Tools/Scripts/webkitpy/common/system/
fileutils.py 29 if sys.platform != 'win32' or not hasattr(sys.stdout, 'fileno'):
33 msvcrt.setmode(sys.stdout.fileno(), os.O_BINARY)
  /external/bison/lib/
fopen-safer.c 43 int fd = fileno (fp);
  /external/jpeg/
cdjpeg.c 154 setmode(fileno(stdin), O_BINARY);
157 if ((input_file = fdopen(fileno(stdin), READ_BINARY)) == NULL) {
172 setmode(fileno(stdout), O_BINARY);
175 if ((output_file = fdopen(fileno(stdout), WRITE_BINARY)) == NULL) {
  /external/qemu/android/utils/
debug.c 116 out_fd = fileno(stdout);
117 err_fd = fileno(stderr);
133 out_fd = fileno(stdout);
134 err_fd = fileno(stderr);
  /frameworks/base/drm/common/
ReadWriteUtils.cpp 41 int fd = fileno(file);
63 int fd = fileno(file);
83 int fd = fileno(file);
100 int fd = fileno(file);
  /external/stlport/src/
_stdio_file.h 34 # include <unix.h> /* get the definition of fileno */
72 inline int _FILE_fd(const FILE *__f) { return fileno(__CONST_CAST(FILE*, __f)); }
85 * dwa: I'm not sure they provide fileno for all OS's, but this should
91 inline int _FILE_fd(const FILE *__f) { return ::fileno(__CONST_CAST(FILE*, __f)); }
  /ndk/sources/cxx-stl/stlport/src/
_stdio_file.h 34 # include <unix.h> /* get the definition of fileno */
72 inline int _FILE_fd(const FILE *__f) { return fileno(__CONST_CAST(FILE*, __f)); }
85 * dwa: I'm not sure they provide fileno for all OS's, but this should
91 inline int _FILE_fd(const FILE *__f) { return ::fileno(__CONST_CAST(FILE*, __f)); }
  /system/core/sh/bltin/
bltin.h 52 #undef fileno macro
62 #define fileno(f) ((f)->fd) macro
  /external/openssl/crypto/bio/
bio_lcl.h 29 #define UP_fileno fileno
  /external/webkit/Source/WebCore/platform/efl/
SharedBufferEfl.cpp 52 if (fstat(fileno(file), &fileStat)) {
  /system/core/toolbox/
cat.c 161 wfd = fileno(stdout);
191 fd = fileno(stdin);
196 fd = fileno(stdin);
224 if (fd != fileno(stdin))
  /external/openssl/crypto/rc4/
rc4.c 149 setmode(fileno(in),O_BINARY);
150 setmode(fileno(out),O_BINARY);
  /external/zlib/
minigzip.c 38 # define SET_BINARY_MODE(file) setmode(fileno(file), O_BINARY)
50 # define fileno(file) file->__file macro
53 # include <unix.h> /* for fileno */
206 int ifd = fileno(in);
397 file = gzdopen(fileno(stdin), "rb");
401 file = gzdopen(fileno(stdout), outmode);
427 file = gzdopen(fileno(stdout), outmode);
  /external/bzip2/
dlltest.c 132 if((fn_r == NULL && (BZ2fp_r = BZ2_bzdopen(fileno(stdin),"rb"))==NULL)
159 if((fn_w == NULL && (BZ2fp_w = BZ2_bzdopen(fileno(stdout),mode))==NULL)
  /external/bluetooth/bluez/sbc/
sbcenc.c 70 fd = fileno(stdin);
74 if (fd > fileno(stderr))
184 len = write(fileno(stdout), output, outp - output);
202 if (fd > fileno(stderr))
  /external/iproute2/netem/
stats.c 27 fstat(fileno(fp), &info);
  /external/openssl/crypto/md4/
md4.c 107 fd=fileno(f);
  /external/openssl/crypto/md5/
md5.c 107 fd=fileno(f);
  /external/openssl/crypto/ripemd/
rmd160.c 107 fd=fileno(f);
  /external/openssl/crypto/sha/
sha.c 104 fd=fileno(f);
sha1.c 107 fd=fileno(f);
  /external/webkit/Tools/Scripts/webkitpy/layout_tests/port/
server_process.py 80 fd = self._proc.stdout.fileno()
83 fd = self._proc.stderr.fileno()
165 out_fd = self._proc.stdout.fileno()
166 err_fd = self._proc.stderr.fileno()
server_process_unittest.py 38 def fileno(self): member in class:MockFile

Completed in 3029 milliseconds

1 2 3 4 5 6 7