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

1 2 3 4 5 6

  /bionic/libc/stdio/
fileno.c 1 /* $OpenBSD: fileno.c,v 1.5 2005/08/08 08:05:36 espie Exp $ */
37 * A subroutine version of the macro fileno.
39 #undef fileno macro
42 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/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) {
wrjpgcom.c 492 setmode(fileno(stdin), O_BINARY);
495 if ((infile = fdopen(fileno(stdin), READ_BINARY)) == NULL) {
524 setmode(fileno(stdout), O_BINARY);
527 if ((outfile = 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);
  /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/WebCore/WebCore.gyp/scripts/
rule_gperf.py 81 returnCode = subprocess.call(command, stdout=ofile.fileno())
  /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/qemu/
migration-exec.c 70 s->fd = fileno(f);
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/lib/gcc/i686-linux/4.4.3/include-fixed/X11/
Xw32defs.h 42 #define fileno _fileno macro
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/X11/
Xw32defs.h 33 #define fileno _fileno macro

Completed in 513 milliseconds

1 2 3 4 5 6