/external/libvorbis/examples/ |
D | 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); 226 -command=>[sub{$fileno+=1;$fileno=$last_file if($fileno>$last_file); 232 -showvalue=>'TRUE',-variable=>\$fileno,-orient=>'horizontal')-> 279 my$filename=$panel_keys[$i]."_$fileno.m"; 297 Status("Plotting $fileno"); 620 $fileno=$first_file if($fileno<$first_file); 621 $fileno=$last_file if($fileno>$last_file);
|
/external/openssh/ |
D | clientloop.c | 205 unset_nonblock(fileno(stdin)); in leave_non_blocking() 216 set_nonblock(fileno(stdin)); in enter_non_blocking() 435 len = read(fileno(stdin), buf, 1); in client_check_initial_eof_on_stdin() 512 if (ioctl(fileno(stdin), TIOCGWINSZ, &ws) < 0) in client_check_window_change() 582 FD_SET(fileno(stdin), *readsetp); in client_wait_until_can_do_something() 586 FD_SET(fileno(stdout), *writesetp); in client_wait_until_can_do_something() 588 FD_SET(fileno(stderr), *writesetp); in client_wait_until_can_do_something() 657 atomicio(vwrite, fileno(stdout), buffer_ptr(bout), in client_suspend_self() 660 atomicio(vwrite, fileno(stderr), buffer_ptr(berr), in client_suspend_self() 1212 if (FD_ISSET(fileno(stdin), readset)) { in client_process_input() [all …]
|
D | sshtty.c | 61 if (tcsetattr(fileno(stdin), TCSADRAIN, &_saved_tio) == -1) { in leave_raw_mode() 73 if (tcgetattr(fileno(stdin), &tio) == -1) { in enter_raw_mode() 91 if (tcsetattr(fileno(stdin), TCSADRAIN, &tio) == -1) { in enter_raw_mode()
|
/external/dropbear/ |
D | 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/qemu/android/utils/ |
D | debug.c | 116 out_fd = fileno(stdout); in stdio_disable() 117 err_fd = fileno(stderr); in stdio_disable() 133 out_fd = fileno(stdout); in stdio_enable() 134 err_fd = fileno(stderr); in stdio_enable()
|
/external/qemu/distrib/jpeg-6b/ |
D | cdjpeg.c | 154 setmode(fileno(stdin), O_BINARY); in read_stdin() 157 if ((input_file = fdopen(fileno(stdin), READ_BINARY)) == NULL) { in read_stdin() 172 setmode(fileno(stdout), O_BINARY); in write_stdout() 175 if ((output_file = fdopen(fileno(stdout), WRITE_BINARY)) == NULL) { in write_stdout()
|
D | wrjpgcom.c | 492 setmode(fileno(stdin), O_BINARY); in main() 495 if ((infile = fdopen(fileno(stdin), READ_BINARY)) == NULL) { in main() 524 setmode(fileno(stdout), O_BINARY); in main() 527 if ((outfile = fdopen(fileno(stdout), WRITE_BINARY)) == NULL) { in main()
|
/external/jpeg/ |
D | cdjpeg.c | 154 setmode(fileno(stdin), O_BINARY); in read_stdin() 157 if ((input_file = fdopen(fileno(stdin), READ_BINARY)) == NULL) { in read_stdin() 172 setmode(fileno(stdout), O_BINARY); in write_stdout() 175 if ((output_file = fdopen(fileno(stdout), WRITE_BINARY)) == NULL) { in write_stdout()
|
D | wrjpgcom.c | 492 setmode(fileno(stdin), O_BINARY); in main() 495 if ((infile = fdopen(fileno(stdin), READ_BINARY)) == NULL) { in main() 524 setmode(fileno(stdout), O_BINARY); in main() 527 if ((outfile = fdopen(fileno(stdout), WRITE_BINARY)) == NULL) { in main()
|
/external/webkit/Tools/Scripts/webkitpy/layout_tests/port/ |
D | server_process.py | 80 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()
|
/external/stlport/src/ |
D | _stdio_file.h | 72 inline int _FILE_fd(const FILE *__f) { return fileno(__CONST_CAST(FILE*, __f)); } 91 inline int _FILE_fd(const FILE *__f) { return ::fileno(__CONST_CAST(FILE*, __f)); }
|
/external/zlib/src/test/ |
D | minigzip.c | 38 # define SET_BINARY_MODE(file) setmode(fileno(file), O_BINARY) 50 # define fileno(file) file->__file macro 397 int ifd = fileno(in); 588 file = gzdopen(fileno(stdin), "rb"); 592 file = gzdopen(fileno(stdout), outmode); 618 file = gzdopen(fileno(stdout), outmode);
|
/external/openssl/crypto/rc4/ |
D | rc4.c | 149 setmode(fileno(in),O_BINARY); in main() 150 setmode(fileno(out),O_BINARY); in main()
|
/external/icu4c/io/ |
D | ufile.c | 40 #if defined(U_WINDOWS) && !defined(fileno) 42 #define fileno _fileno macro 63 result->fFileno = fileno(f); in finit_owner()
|
/external/chromium/base/ |
D | shared_memory_posix.cc | 141 if (fstat(fileno(fp), &stat) != 0) in CreateNamed() 145 if (HANDLE_EINTR(ftruncate(fileno(fp), size)) != 0) in CreateNamed() 262 mapped_file_ = dup(fileno(fp)); in PrepareMapFile()
|
/external/zlib/src/contrib/iostream2/ |
D | zstream.h | 35 # define SET_BINARY_MODE(file) setmode(fileno(file), O_BINARY) 73 m_fp = ::gzdopen(fileno(fp), "rb"); in open() 191 m_fp = ::gzdopen(fileno(fp), mode);
|
/external/bzip2/ |
D | dlltest.c | 132 if((fn_r == NULL && (BZ2fp_r = BZ2_bzdopen(fileno(stdin),"rb"))==NULL) in main() 159 if((fn_w == NULL && (BZ2fp_w = BZ2_bzdopen(fileno(stdout),mode))==NULL) in main()
|
/external/v8/tools/ |
D | stats-viewer.py | 118 size = os.fstat(data_file.fileno()).st_size 119 fileno = data_file.fileno() 120 self.shared_mmap = mmap.mmap(fileno, size, access=mmap.ACCESS_READ)
|
/external/webkit/Tools/Scripts/webkitpy/common/system/ |
D | fileutils.py | 33 msvcrt.setmode(sys.stdout.fileno(), os.O_BINARY)
|
/external/netperf/ |
D | netserver.c | 243 if (dup (fileno (where)) == -1) in process_requests() 589 if (dup (fileno (rd_null_fp)) == -1) in set_up_server() 601 if (dup (fileno (where)) == -1) in set_up_server() 619 if (dup (fileno (wr_null_fp)) == -1) in set_up_server()
|
/external/ppp/pppd/plugins/radius/ |
D | buildreq.c | 107 while (do_lock_exclusive(fileno(sf))!= 0) in rc_get_seqnbr() 138 ftruncate(fileno(sf),0); in rc_get_seqnbr() 143 if (do_unlock(fileno(sf)) != 0) in rc_get_seqnbr()
|
/external/libpng/contrib/gregbook/ |
D | wpng.c | 308 setmode(fileno(stdin), O_BINARY); in main() 309 setmode(fileno(stdout), O_BINARY); in main() 311 if ((wpng_info.infile = fdopen(fileno(stdin), "rb")) == NULL) { in main() 316 if ((wpng_info.outfile = fdopen(fileno(stdout), "wb")) == NULL) { in main() 439 (keybd = fdopen(fileno(stderr), "r")) != NULL && in main()
|
/external/openssl/crypto/des/ |
D | read_pwd.c | 307 if (TTY_get(fileno(tty),&tty_orig) == -1) in des_read_pw() 342 if (is_a_tty && (TTY_set(fileno(tty),&tty_new) == -1)) in des_read_pw() 400 if (ps >= 2) TTY_set(fileno(tty),&tty_orig); in des_read_pw()
|
/external/bison/lib/ |
D | fopen-safer.c | 43 int fd = fileno (fp); in fopen_safer()
|
/external/webkit/Source/WebCore/platform/efl/ |
D | SharedBufferEfl.cpp | 52 if (fstat(fileno(file), &fileStat)) { in createWithContentsOfFile()
|