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

12345

/external/webkit/Tools/Scripts/webkitpy/common/system/
H A Dfileutils.py29 if sys.platform != 'win32' or not hasattr(sys.stdout, 'fileno'):
33 msvcrt.setmode(sys.stdout.fileno(), os.O_BINARY)
/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/openssh/
H A Dsshtty.c61 if (tcsetattr(fileno(stdin), TCSADRAIN, &_saved_tio) == -1) {
73 if (tcgetattr(fileno(stdin), &tio) == -1) {
91 if (tcsetattr(fileno(stdin), TCSADRAIN, &tio) == -1) {
H A Dclientloop.c205 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),
1212 if (FD_ISSET(fileno(stdi
[all...]
/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/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/qemu/distrib/jpeg-6b/
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) {
/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/openssl/crypto/bio/
H A Dbio_lcl.h29 #define UP_fileno fileno
/external/webkit/Source/WebCore/platform/efl/
H A DSharedBufferEfl.cpp52 if (fstat(fileno(file), &fileStat)) {
/external/openssl/crypto/rc4/
H A Drc4.c149 setmode(fileno(in),O_BINARY);
150 setmode(fileno(out),O_BINARY);
/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/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/webkit/Tools/Scripts/webkitpy/layout_tests/port/
H A Dserver_process.py80 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()
H A Dserver_process_unittest.py38 def fileno(self): member in class:MockFile
/external/zlib/src/test/
H A Dminigzip.c38 # define SET_BINARY_MODE(file) setmode(fileno(file), O_BINARY)
50 # define fileno(file) file->__file macro
53 # include <unix.h> /* for fileno */
397 int ifd = fileno(in);
588 file = gzdopen(fileno(stdin), "rb");
592 file = gzdopen(fileno(stdout), outmode);
618 file = gzdopen(fileno(stdout), outmode);
/external/e2fsprogs/lib/et/
H A Dcom_err.c34 int do_cr = 1, fd = fileno(stderr);

Completed in 814 milliseconds

12345