Home
last modified time | relevance | path

Searched refs:outf (Results 1 – 10 of 10) sorted by relevance

/external/zlib/src/contrib/iostream3/
Dtest.cc13 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()
DREADME4 gzofstream outf("blah.gz");
5 outf << "These go into the gzip file " << 123 << endl;
/external/strace/
Dcount.c158 call_summary_pers(FILE *outf) in call_summary_pers() argument
193 fprintf(outf, "%6.6s %11.11s %11.11s %9.9s %9.9s %s\n", in call_summary_pers()
196 fprintf(outf, "%6.6s %11.11s %11.11s %9.9s %9.9s %-16.16s\n", in call_summary_pers()
212 fprintf(outf, "%6.2f %11.6f %11ld %9d %9.9s %s\n", in call_summary_pers()
221 fprintf(outf, "%6.6s %11.11s %11.11s %9.9s %9.9s %-16.16s\n", in call_summary_pers()
227 fprintf(outf, "%6.6s %11.6f %11.11s %9d %9.9s %s\n", in call_summary_pers()
233 call_summary(FILE *outf) in call_summary() argument
245 fprintf(outf, in call_summary()
248 call_summary_pers(outf); in call_summary()
Dstrace.c120 FILE *outf; variable
371 tcp->outf = fp; in newoutf()
417 tcp->outf = outf; in startup_attach()
587 if (outf != stderr) close (fileno (outf)); in startup_child()
601 if (outf!=stderr) in startup_child()
602 close(fileno (outf)); in startup_child()
789 outf = stderr; in main()
992 if ((outf = strace_popen(outfname + 1)) == NULL) in main()
996 (outf = strace_fopen(outfname, "w")) == NULL) in main()
1001 setvbuf(outf, buf, _IOLBF, BUFSIZ); in main()
[all …]
Ddefs.h353 FILE *outf; /* Output file for this process */ member
Dsyscall.c2566 if (fflush(tcp->outf) == EOF) in trace_syscall_exiting()
2723 if (fflush(tcp->outf) == EOF) in trace_syscall_entering()
DChangeLog-CVS1448 Reinitialize tcp->outf properly.
4117 * strace.c: close tcp->outf in droptcb()
4651 * strace.c: close outf before we exec a child process
5427 Check if outfname is NULL instead of checking outf for stderr.
5428 Reinitialize each startup TCB's outf to fix -p/-o ordering bug.
5429 (droptcb): Reset close TCB's outf to NULL instead of stderr.
5430 (tprintf): Avoid calling vfprintf if outf is NULL.
/external/mesa3d/src/mesa/main/
Dmacros.h601 GLfloat outf = UBYTE_TO_FLOAT( outub ); \
602 GLfloat dstf = LINTERP( t, outf, inf ); \
609 GLfloat outf = CHAN_TO_FLOAT( outc ); \
610 GLfloat dstf = LINTERP( t, outf, inf ); \
617 #define INTERP_F( t, dstf, outf, inf ) \ argument
618 dstf = LINTERP( t, outf, inf )
/external/openssl/apps/
Denc.c124 char *inf=NULL,*outf=NULL; in MAIN() local
178 outf= *(++argv); in MAIN()
452 if (outf == NULL) in MAIN()
468 if (BIO_write_filename(out,outf) <= 0) in MAIN()
470 perror(outf); in MAIN()
/external/zlib/src/contrib/blast/
Dblast.c422 local int outf(void *how, unsigned char *buf, unsigned len) in outf() function
433 ret = blast(inf, stdin, outf, stdout); in main()