Searched refs:fileno (Results 1 - 25 of 81) sorted by relevance

1234

/external/dropbear/
H A Dnetbsd_getpass.c93 (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/
H A Dfopen-safer.c43 int fd = fileno (fp);
/external/jpeg/
H A Dcdjpeg.c154 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) {
H A Dwrjpgcom.c492 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/openssl/crypto/bio/
H A Dbio_lcl.h21 #define UP_fileno fileno
H A Dbss_file.c288 int fd = fileno((FILE*)ptr);
296 int fd = fileno((FILE*)ptr);
312 int fd = fileno((FILE*)ptr);
/external/qemu/android/utils/
H A Ddebug.c116 out_fd = fileno(stdout);
117 err_fd = fileno(stderr);
133 out_fd = fileno(stdout);
134 err_fd = fileno(stderr);
/external/stlport/src/
H A D_stdio_file.h34 # 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/WebCore/WebCore.gyp/scripts/
H A Drule_gperf.py81 returnCode = subprocess.call(command, stdout=ofile.fileno())
/external/openssl/crypto/rc4/
H A Drc4.c149 setmode(fileno(in),O_BINARY);
150 setmode(fileno(out),O_BINARY);
/external/zlib/
H A Dminigzip.c35 # define SET_BINARY_MODE(file) setmode(fileno(file), O_BINARY)
47 # define fileno(file) file->__file macro
50 # include <unix.h> /* for fileno */
137 int ifd = fileno(in);
304 file = gzdopen(fileno(stdin), "rb");
308 file = gzdopen(fileno(stdout), outmode);
/external/bzip2/
H A Ddlltest.c132 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/
H A Dsbcenc.c69 fd = fileno(stdin);
73 if (fd > fileno(stderr))
183 len = write(fileno(stdout), output, outp - output);
201 if (fd > fileno(stderr))
/external/iproute2/netem/
H A Dstats.c27 fstat(fileno(fp), &info);
/external/openssl/apps/
H A Dmd4.c107 fd=fileno(f);
/external/openssl/crypto/md4/
H A Dmd4.c107 fd=fileno(f);
/external/openssl/crypto/md5/
H A Dmd5.c107 fd=fileno(f);
/external/openssl/crypto/ripemd/
H A Drmd160.c107 fd=fileno(f);
/external/openssl/crypto/sha/
H A Dsha.c104 fd=fileno(f);
H A Dsha1.c107 fd=fileno(f);
/external/qemu/
H A Dmigration-exec.c70 s->fd = fileno(f);
/external/v8/tools/
H A Dstats-viewer.py114 size = os.fstat(data_file.fileno()).st_size
115 fileno = data_file.fileno()
116 self.shared_mmap = mmap.mmap(fileno, size, access=mmap.ACCESS_READ)
/external/dhcpcd/
H A Dcommon.c152 dup2(fd, fileno(stdin));
153 dup2(fd, fileno(stdout));
154 dup2(fd, fileno(stderr));
/external/icu4c/io/
H A Dufile.c21 /* define for fileno. */
40 #if defined(U_WINDOWS) && !defined(fileno)
42 #define fileno _fileno macro
61 result->fFileno = fileno(f);
/external/zlib/contrib/iostream2/
H A Dzstream.h35 # define SET_BINARY_MODE(file) setmode(fileno(file), O_BINARY)
73 m_fp = ::gzdopen(fileno(fp), "rb");
191 m_fp = ::gzdopen(fileno(fp), mode);

Completed in 216 milliseconds

1234