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

1 2 3 4 5 6 7 8 91011>>

  /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/openssl/crypto/bio/
bio_lcl.h 29 #define UP_fileno fileno
  /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/llvm/lib/MC/
MCLoggingStreamer.cpp 210 virtual bool EmitDwarfFileDirective(unsigned FileNo, StringRef Filename) {
212 "FileNo:" + Twine(FileNo) + " Filename:" + Filename);
213 return Child->EmitDwarfFileDirective(FileNo, Filename);
216 virtual void EmitDwarfLocDirective(unsigned FileNo, unsigned Line,
221 "FileNo:" + Twine(FileNo) + " Line:" + Twine(Line) +
224 return Child->EmitDwarfLocDirective(FileNo, Line, Column, Flags,
MCNullStreamer.cpp 86 virtual bool EmitDwarfFileDirective(unsigned FileNo,StringRef Filename) {
89 virtual void EmitDwarfLocDirective(unsigned FileNo, unsigned Line,
  /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/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)); }
  /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) {
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/X11/
Xw32defs.h 33 #define fileno _fileno macro
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/lib/esound/
libesddsp.so.0 
libesddsp.so.0.2.38 
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/lib/
libnss_files-2.7.so 
libnss_files.so 
libnss_files.so.2 
  /system/core/toolbox/
cat.c 161 wfd = fileno(stdout);
191 fd = fileno(stdin);
196 fd = fileno(stdin);
224 if (fd != fileno(stdin))
  /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)
  /system/core/sh/bltin/
bltin.h 52 #undef fileno macro
62 #define fileno(f) ((f)->fd) macro
  /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/icu4c/io/
ufile.c 21 /* define for fileno. */
40 #if defined(U_WINDOWS) && !defined(fileno)
42 #define fileno _fileno macro
63 result->fFileno = fileno(f);
  /external/iproute2/netem/
stats.c 27 fstat(fileno(fp), &info);
  /external/strace/
acinclude.m4 72 if (write (fileno (ctl), &cmd, sizeof cmd) < 0)
74 if (read (fileno (status), &pstatus, sizeof pstatus) < 0)
143 if (IOCTL(fileno(pfp), PIOCSTOP, NULL) < 0)
145 pfd.fd = fileno(pfp);

Completed in 1657 milliseconds

1 2 3 4 5 6 7 8 91011>>