Home
last modified time | relevance | path

Searched refs:outname (Results 1 – 15 of 15) sorted by relevance

/external/bison/src/
Dscan-skel.l67 char *outname = NULL; variable
87 if (outname)
89 free (outname);
92 outname = xstrdup (file_name);
93 yyout = xfopen (outname, "w");
102 "@ofile@" QPUTS (outname);
113 if (outname)
115 free (outname);
Dscan-skel.c847 char *outname = NULL; variable
981 if (outname)
983 free (outname);
986 outname = xstrdup (file_name);
987 skel_out = xfopen (outname, "w");
1014 QPUTS (outname);
1051 if (outname)
1053 free (outname);
/external/zlib/examples/
Dgun.c547 local int gunzip(z_stream *strm, char *inname, char *outname, int test) in gunzip() argument
566 else if (outname == NULL || *outname == 0) { in gunzip()
567 outname = "-"; in gunzip()
571 outfile = open(outname, O_CREAT | O_TRUNC | O_WRONLY, 0666); in gunzip()
574 fprintf(stderr, "gun cannot create %s\n", outname); in gunzip()
590 copymeta(inname, outname); /* copy attributes */ in gunzip()
598 if (outfile > 2) unlink(outname); in gunzip()
602 if (outfile > 2) unlink(outname); in gunzip()
606 if (outfile > 2) unlink(outname); in gunzip()
609 outname, strerror(errno)); in gunzip()
[all …]
/external/valgrind/main/coregrind/
Dlink_tool_exe_darwin.in112 my $outname = "";
116 if ($str eq "-o" && $outname eq "") {
117 $outname = $ARGV[$n + 1];
122 if ($outname eq "");
145 $cmd = "$cmd -o $outname";
/external/libpng/
Dpngtest.c96 int test_one_file PNGARG((PNG_CONST char *inname, PNG_CONST char *outname));
687 test_one_file(PNG_CONST char *inname, PNG_CONST char *outname) in test_one_file() argument
733 MultiByteToWideChar(CP_ACP, 0, outname, -1, path, MAX_PATH); in test_one_file()
737 if ((fpout = fopen(outname, "wb")) == NULL) in test_one_file()
740 fprintf(STDERR, "Could not open output file %s\n", outname); in test_one_file()
802 fprintf(STDERR, "%s -> %s: libpng read error\n", inname, outname); in test_one_file()
826 fprintf(STDERR, "%s -> %s: libpng write error\n", inname, outname); in test_one_file()
1374 MultiByteToWideChar(CP_ACP, 0, outname, -1, path, MAX_PATH); in test_one_file()
1378 if ((fpout = fopen(outname, "rb")) == NULL) in test_one_file()
1381 fprintf(STDERR, "Could not find file %s\n", outname); in test_one_file()
[all …]
/external/libpng/contrib/gregbook/
Dwpng.c163 char *inname = NULL, outname[256]; in main() local
368 strcpy(outname, inname); in main()
369 strcpy(outname+len, ".png"); in main()
372 strncpy(outname, inname, len); in main()
373 strcpy(outname+len, ".png"); in main()
376 if ((wpng_info.outfile = fopen(outname, "rb")) != NULL) { in main()
378 outname); in main()
381 } else if (!(wpng_info.outfile = fopen(outname, "wb"))) { in main()
383 outname); in main()
/external/elfutils/config/
Ddepcomp180 outname="$stripped.o"
198 sed -e "s,^$outname:,$object :," < "$tmpdepfile" > "$depfile"
199 sed -e "s,^$outname: \(.*\)$,\1:," < "$tmpdepfile" >> "$depfile"
/external/llvm/autoconf/
Ddepcomp226 outname="$stripped.o"
230 sed -e "s,^$outname:,$object :," < "$tmpdepfile" > "$depfile"
231 sed -e "s,^$outname: \(.*\)$,\1:," < "$tmpdepfile" >> "$depfile"
/external/grub/
Ddepcomp226 outname="$stripped.o"
230 sed -e "s,^$outname:,$object :," < "$tmpdepfile" > "$depfile"
231 sed -e "s,^$outname: \(.*\)$,\1:," < "$tmpdepfile" >> "$depfile"
/external/strace/
Ddepcomp233 outname="$stripped.o"
237 sed -e "s,^$outname:,$object :," < "$tmpdepfile" > "$depfile"
238 sed -e "s,^$outname: \(.*\)$,\1:," < "$tmpdepfile" >> "$depfile"
/external/genext2fs/
Ddepcomp226 outname="$stripped.o"
230 sed -e "s,^$outname:,$object :," < "$tmpdepfile" > "$depfile"
231 sed -e "s,^$outname: \(.*\)$,\1:," < "$tmpdepfile" >> "$depfile"
/external/bison/build-aux/
Ddepcomp226 outname="$stripped.o"
230 sed -e "s,^$outname:,$object :," < "$tmpdepfile" > "$depfile"
231 sed -e "s,^$outname: \(.*\)$,\1:," < "$tmpdepfile" >> "$depfile"
/external/libffi/
Ddepcomp240 outname="$stripped.o"
244 sed -e "s,^$outname:,$object :," < "$tmpdepfile" > "$depfile"
245 sed -e "s,^$outname: \(.*\)$,\1:," < "$tmpdepfile" >> "$depfile"
/external/e2fsprogs/debugfs/
Ddump.c101 int preserve, char *outname) in dump_file() argument
135 fix_perms("dump_file", &inode, fd, outname); in dump_file()
/external/v8/tools/
Dtest.py524 (fd_out, outname) = tempfile.mkstemp()
535 output = file(outname).read()
537 CheckedUnlink(outname)