HomeSort by relevance Sort by last modified time
    Searched refs:outf (Results 1 - 10 of 10) sorted by null

  /external/zlib/contrib/iostream3/
test.cc 13 gzofstream outf; local
17 outf.open("test1.txt.gz");
18 outf << "The quick brown fox sidestepped the lazy canine\n"
20 outf.close();
32 outf.rdbuf()->pubsetbuf(0,0);
33 outf.open("test2.txt.gz");
34 outf << setcompression(Z_NO_COMPRESSION)
37 outf.close();
  /external/strace/
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))
    [all...]
syscall.c     [all...]
defs.h 277 FILE *outf; /* Output file for this process */ member in struct:tcb
  /ndk/sources/host-tools/sed-4.2.1/sed/
sed.h 126 struct output *outf; /* 'w' option given */ member in struct:subst
177 struct output *outf; member in union:sed_cmd::__anon17022
execute.c 549 output_missing_newline(outf)
550 struct output *outf;
552 if (outf->missing_newline)
554 ck_fwrite("\n", 1, 1, outf->fp);
555 outf->missing_newline = false;
570 output_line(text, length, nl, outf)
574 struct output *outf;
579 output_missing_newline(outf);
581 ck_fwrite(text, 1, length, outf->fp);
583 ck_fwrite("\n", 1, 1, outf->fp)
    [all...]
compile.c 96 struct output outf;
406 for (special = special_files; special->outf.name; special++)
407 if (strcmp(special->outf.name, file_name) == 0)
409 special->outf.fp = *special->pfp;
411 return &special->outf;
605 cmd->outf = NULL;
659 cmd->outf = get_openfile(&file_write, "w", true);
1270 cur_cmd->x.outf = get_openfile(&file_write, "w", true);
95 struct output outf; member in struct:special_files
    [all...]