/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...] |
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...] |
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...] |
/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);
|
save.c | 63 int outfd; local in function:save 115 if ((outfd = creat(buf, 0644)) < 0) { 122 rv = varpush(outfd, writev); 123 close(outfd);
|
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);
|
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);
|
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);
|
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);
|
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);
|
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);
|
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...] |
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...] |
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)
|
sort.c | 328 int outfd; local in function:main 334 if ((outfd = mkstemp(toutpath)) == -1) 343 if ((outfp = fdopen(outfd, "w")) == NULL)
|
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) {
|
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) {
|
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)
|