/src/lib/libcurses/ |
putchar.c | 49 return __cputchar_args(ch, _cursesi_screen->outfd); 60 FILE *outfd = (FILE *)args; local in function:__cputchar_args 64 unctrl(ch), outfd->_file); 65 status = putc(ch, outfd); 66 fflush(outfd); 75 return __cputwchar_args(wch, _cursesi_screen->outfd); 86 FILE *outfd = (FILE *)args; local in function:__cputwchar_args 90 wch, outfd->_file); 91 status = putwc(wch, outfd); 92 fflush(outfd); [all...] |
curses_private.h | 213 FILE *infd, *outfd; /* input and output file descriptors */ member in struct:__screen
|
/src/games/mille/ |
save.c | 63 int outfd; local in function:save 115 if ((outfd = creat(buf, 0644)) < 0) { 122 rv = varpush(outfd, writev); 123 close(outfd);
|
/src/sys/arch/alpha/stand/mkbootimage/ |
mkbootimage.c | 64 int c, verbose, nowrite, infd, outfd; local in function:main 152 outfd = STDOUT_FILENO; 154 } else if ((outfd = open(outfile, O_WRONLY|O_CREAT, 0666)) == -1) 158 rv = write(outfd, outbuf, outbufsize); 163 (void)close(outfd);
|
/src/games/warp/ |
score.c | 525 FILE *outfd; local in function:score 552 (outfd = fopen(TMPSCOREBOARD,"w")) != NULL) { 562 fprintf(outfd, "%s", buf); 566 fclose(outfd); 570 fprintf(outfd, "%-24s%-8s%8ld%c %2d %4d %s", 577 fprintf(outfd, "%s", buf); 586 fprintf(outfd, "%s", buf); 593 fclose(outfd); 602 fclose(outfd);
|
/src/sys/arch/zaurus/stand/zboot/ |
unixcons.c | 39 static int outfd = 1; variable in typeref:typename:int 66 if (infd >= 0 && infd == outfd) { 69 outfd = 1; 74 outfd = 1; 83 infd = outfd = fd; 107 common_putc(outfd, c);
|
/src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/ |
sanitizer_symbolizer_posix_libcdep.cc | 108 int *outfd = NULL; local in function:__sanitizer::CreateTwoHighNumberedPipes 127 outfd = sock_pair[i]; 138 CHECK(outfd); 141 outfd_[0] = outfd[0]; 142 outfd_[1] = outfd[1]; 159 int outfd[2]; local in function:__sanitizer::SymbolizerProcess::StartSymbolizerSubprocess 160 internal_memset(&outfd, 0, sizeof(outfd)); 161 if (!CreateTwoHighNumberedPipes(infd, outfd)) { 178 close(outfd[0]) [all...] |
/src/usr.bin/sort/ |
sort.c | 328 int outfd; local in function:main 334 if ((outfd = mkstemp(toutpath)) == -1) 343 if ((outfp = fdopen(outfd, "w")) == NULL)
|
/src/usr.sbin/tprof/ |
tprof.c | 91 int outfd; variable in typeref:typename:int 175 wsz = write(outfd, cp, ssz); 449 outfd = open(outfile, O_WRONLY | O_CREAT | O_TRUNC, 0666); 450 if (outfd == -1) {
|
/src/libexec/makewhatis/ |
makewhatis.c | 252 int outfd; local in function:makewhatis 378 outfd = open(whatisdb_new, O_WRONLY|O_CREAT|O_EXCL, 380 if (outfd < 0) 383 if (fstat(outfd, &st_before) == -1) 386 if ((out = fdopen(outfd, "w")) == NULL)
|
/src/usr.bin/midirecord/ |
midirecord.c | 69 static int outfd, rawfd = -1; variable in typeref:typename:int 197 outfd = open(*argv, mode, 0666); 198 if (outfd < 0) 202 outfd = STDOUT_FILENO; 275 if ((size_t)write(outfd, buffer, wrsize) != wrsize) 739 if (close(outfd) != 0) 757 if (lseek(outfd, (off_t)0, SEEK_SET) == (off_t)-1) 804 if (write(outfd, header, sizeof header) != sizeof header) 806 if (write(outfd, track, sizeof track) != sizeof track) 808 if (write(outfd, bpm, sizeof bpm) != sizeof bpm [all...] |
/src/usr.bin/make/ |
meta.c | 1650 int outfd, metafd, maxfd, nfds; local in function:meta_compat_parent 1656 outfd = childPipe[0]; 1663 if (outfd > maxfd) 1664 maxfd = outfd; 1668 while (outfd != -1 || metafd != -1) { 1670 if (outfd != -1) { 1671 FD_SET(outfd, &readfds); 1683 if (outfd != -1 && FD_ISSET(outfd, &readfds) != 0) do { 1685 ssize_t nread = read(outfd, buf, sizeof buf - 1) [all...] |
/src/usr.bin/audio/common/ |
libaudio.h | 292 int outfd; member in struct:track_info
|