HomeSort by relevance Sort by last modified time
    Searched refs:fileno (Results 1 - 25 of 251) 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/bison/lib/
binary-io.h 24 /* The MSVC7 <stdio.h> doesn't like to be included after '#define fileno ...',
42 # undef fileno
43 # define fileno _fileno
fopen-safer.c 37 int fd = fileno (fp);
fseterr.c 63 fd = fileno (fp);
  /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/libvpx/libvpx/
tools_common.c 18 #define _fileno fileno
  /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/compiler-rt/lib/tsan/lit_tests/
user_fopen.cc 16 extern "C" int fileno(FILE *f) { function
19 printf("user fileno\n");
  /external/openssh/
sshtty.c 61 if (tcsetattr(fileno(stdin), TCSADRAIN, &_saved_tio) == -1) {
73 if (tcgetattr(fileno(stdin), &tio) == -1) {
91 if (tcsetattr(fileno(stdin), TCSADRAIN, &tio) == -1) {
clientloop.c 205 unset_nonblock(fileno(stdin));
216 set_nonblock(fileno(stdin));
435 len = read(fileno(stdin), buf, 1);
512 if (ioctl(fileno(stdin), TIOCGWINSZ, &ws) < 0)
582 FD_SET(fileno(stdin), *readsetp);
586 FD_SET(fileno(stdout), *writesetp);
588 FD_SET(fileno(stderr), *writesetp);
657 atomicio(vwrite, fileno(stdout), buffer_ptr(bout),
660 atomicio(vwrite, fileno(stderr), buffer_ptr(berr),
    [all...]
  /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);
  /external/qemu/distrib/jpeg-6b/
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) {
  /frameworks/av/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/libvorbis/examples/
frameview.pl 12 my $fileno=0;
214 -command=>[sub{$fileno-=10;$fileno=$first_file if($fileno<$first_file);
218 -command=>[sub{$fileno+=10;$fileno=$last_file if($fileno>$last_file);
222 -command=>[sub{$fileno-=1;$fileno=$first_file if($fileno<$first_file)
    [all...]
  /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/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/iproute2/netem/
stats.c 27 fstat(fileno(fp), &info);
  /external/openssl/crypto/md4/
md4.c 107 fd=fileno(f);

Completed in 697 milliseconds

1 2 3 4 5 6 7 8 91011