Searched refs:outf (Results 1 – 8 of 8) sorted by relevance
/external/zlib/contrib/iostream3/ |
D | test.cc | 13 gzofstream outf; in main() local 17 outf.open("test1.txt.gz"); in main() 18 outf << "The quick brown fox sidestepped the lazy canine\n" in main() 20 outf.close(); in main() 32 outf.rdbuf()->pubsetbuf(0,0); in main() 33 outf.open("test2.txt.gz"); in main() 34 outf << setcompression(Z_NO_COMPRESSION) in main() 37 outf.close(); in main()
|
D | README | 4 gzofstream outf("blah.gz"); 5 outf << "These go into the gzip file " << 123 << endl;
|
/external/strace/ |
D | strace.c | 85 FILE *outf; variable 204 outf = stderr; 369 if ((outf = popen(outfname + 1, "w")) == NULL) { 377 else if ((outf = fopen(outfname, "w")) == NULL) { 383 if ((f=fcntl(fileno(outf), F_GETFD)) < 0 ) { 388 if (fcntl(fileno(outf), F_SETFD, f|FD_CLOEXEC) < 0 ) { 399 setvbuf(outf, buf, _IOLBF, BUFSIZ); 408 tcp->outf = outf; 561 if (outf != stderr) close (fileno (outf)); 575 if (outf!=stderr) [all …]
|
D | syscall.c | 2396 if (fflush(tcp->outf) == EOF) 2530 if (fflush(tcp->outf) == EOF) 2679 call_summary(outf) in call_summary() argument 2680 FILE *outf; in call_summary() 2708 fprintf(outf, "%6.6s %11.11s %11.11s %9.9s %9.9s %s\n", 2711 fprintf(outf, "%6.6s %11.11s %11.11s %9.9s %9.9s %-16.16s\n", 2725 fprintf(outf, "%6.2f %4ld.%06ld %11ld %9d %9.9s %s\n", 2735 fprintf(outf, "%6.6s %11.11s %11.11s %9.9s %9.9s %-16.16s\n", 2741 fprintf(outf, "%6.6s %4ld.%06ld %11.11s %9d %9.9s %s\n",
|
D | defs.h | 277 FILE *outf; /* Output file for this process */ member
|
D | ChangeLog | 2116 * strace.c: close tcp->outf in droptcb() 2650 * strace.c: close outf before we exec a child process 3426 Check if outfname is NULL instead of checking outf for stderr. 3427 Reinitialize each startup TCB's outf to fix -p/-o ordering bug. 3428 (droptcb): Reset close TCB's outf to NULL instead of stderr. 3429 (tprintf): Avoid calling vfprintf if outf is NULL.
|
/external/openssl/apps/ |
D | enc.c | 127 char *inf=NULL,*outf=NULL; in MAIN() local 180 outf= *(++argv); in MAIN() 450 if (outf == NULL) in MAIN() 464 if (BIO_write_filename(out,outf) <= 0) in MAIN() 466 perror(outf); in MAIN()
|
/external/zlib/contrib/blast/ |
D | blast.c | 422 local int outf(void *how, unsigned char *buf, unsigned len) in outf() function 433 ret = blast(inf, stdin, outf, stdout); in main()
|