Home
last modified time | relevance | path

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

12

/external/zlib/src/examples/
Dgun.c548 local int gunzip(z_stream *strm, char *inname, char *outname, int test) in gunzip() argument
567 else if (outname == NULL || *outname == 0) { in gunzip()
568 outname = "-"; in gunzip()
572 outfile = open(outname, O_CREAT | O_TRUNC | O_WRONLY, 0666); in gunzip()
575 fprintf(stderr, "gun cannot create %s\n", outname); in gunzip()
591 copymeta(inname, outname); /* copy attributes */ in gunzip()
599 if (outfile > 2) unlink(outname); in gunzip()
603 if (outfile > 2) unlink(outname); in gunzip()
607 if (outfile > 2) unlink(outname); in gunzip()
610 outname, strerror(errno)); in gunzip()
[all …]
/external/valgrind/coregrind/
Dlink_tool_exe_darwin.in113 my $outname = "";
117 if ($str eq "-o" && $outname eq "") {
118 $outname = $ARGV[$n + 1];
123 if ($outname eq "");
154 $cmd = "$cmd -o $outname";
186 $cmd = "$cmd $stack_addr_str $stack_size_str $outname";
/external/webrtc/webrtc/modules/audio_coding/codecs/g722/test/
DtestG722.cc43 char inname[60], outbit[40], outname[40]; in main() local
90 sscanf(argv[4], "%s", outname); in main()
100 if ((outp = fopen(outname,"wb")) == NULL) { in main()
101 printf(" G.722: Cannot write file %s.\n", outname); in main()
104 printf("\nInput:%s\nOutput bitstream:%s\nOutput:%s\n", inname, outbit, outname); in main()
/external/webrtc/webrtc/modules/audio_coding/codecs/g711/test/
DtestG711.cc36 char inname[80], outname[40], bitname[40]; in main() local
93 sscanf(argv[4], "%s", outname); in main()
106 if ((outp = fopen(outname, "wb")) == NULL) { in main()
107 printf(" G.711: Cannot write file %s.\n", outname); in main()
110 printf("\nInput: %s\nOutput: %s\n", inname, outname); in main()
/external/selinux/policycoreutils/semodule_expand/
Dsemodule_expand.c40 char *basename, *outname; in main() local
107 outname = argv[optind]; in main()
169 outfile = fopen(outname, "w"); in main()
171 perror(outname); in main()
180 argv[0], outname); in main()
/external/selinux/policycoreutils/semodule_link/
Dsemodule_link.c80 char *basename, *outname = NULL; in main() local
96 outname = optarg; in main()
150 if (outname) { in main()
151 outfile = fopen(outname, "w"); in main()
153 perror(outname); in main()
/external/chromium-trace/catapult/third_party/gsutil/third_party/rsa/rsa/
Dcli.py184 def write_outfile(self, outdata, outname): argument
187 if outname:
188 print('Writing output to %s' % outname, file=sys.stderr)
189 with open(outname, 'wb') as outfile:
327 def get_outfile(self, outname): argument
330 if outname:
331 print('Will write output to %s' % outname, file=sys.stderr)
332 fobj = open(outname, 'wb')
/external/bison/src/
Dscan-skel.l62 char *outname = NULL; variable
79 "@ofile@" QPUTS (outname);
95 if (outname)
97 free (outname);
127 &outname, &out_lineno);
/external/webrtc/webrtc/modules/audio_coding/codecs/isac/main/test/
DsimpleKenny.c56 char outname[500]; in main() local
161 sscanf(argv[2], "%s", outname); in main()
211 if ((outp = fopen(outname, "wb")) == NULL) { in main()
212 printf(" iSAC: Cannot write file %s.\n", outname); in main()
217 _splitpath(outname, outDrive, outPath, outPrefix, outSuffix); in main()
226 printf("Output................... %s\n", outname); in main()
518 strcpy(newOutName, outname); in main()
533 rename(outname, newOutName); in main()
/external/v8/tools/
Dandroid-run.py50 (fd_out, outname) = tempfile.mkstemp()
61 output = file(outname).read()
63 os.unlink(outname)
Dnacl-run.py46 (fd_out, outname) = tempfile.mkstemp()
57 output = file(outname).read()
59 os.unlink(outname)
/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/vboot_reference/futility/
Dcmd_dump_fmap.c40 char *outname = 0; in dump_fmap() local
82 outname = NULL; in dump_fmap()
86 outname = extract_names[j]; in dump_fmap()
114 if (!outname) { in dump_fmap()
118 outname = buf; in dump_fmap()
120 FILE *fp = fopen(outname, "wb"); in dump_fmap()
123 progname, outname, strerror(errno)); in dump_fmap()
141 printf("saved as \"%s\"\n", outname); in dump_fmap()
/external/webrtc/webrtc/modules/audio_coding/codecs/isac/fix/test/
Dtest_iSACfixfloat.c83 char inname[50], outname[50], bottleneck_file[50], bitfilename[60], in main() local
243 sscanf(argv[argc - 1], "%s", outname); in main()
249 if ((outp = fopen(outname, "wb")) == NULL) { in main()
250 printf(" iSAC: Cannot write file %s.\n", outname); in main()
253 printf("\nInput:%s\nOutput:%s\n", inname, outname); in main()
256 while (outname[i] != '\0') { in main()
257 bitfilename[i] = outname[i]; in main()
Dkenny.cc98 char inname[100], outname[100], outbitsname[100], bottleneck_file[100]; in main() local
414 sscanf(argv[argc-1], "%s", outname); in main()
417 while ((int)outname[h] != 0) { in main()
418 outbitsname[h] = outname[h]; in main()
429 if ((outp = fopen(outname,"wb")) == NULL) { in main()
430 printf(" iSAC: Cannot write file %s\n", outname); in main()
438 printf("\nInput:%s\nOutput:%s\n\n", inname, outname); in main()
/external/libpng/
Dpngtest.c861 test_one_file(PNG_CONST char *inname, PNG_CONST char *outname) in test_one_file() argument
896 if ((fpout = fopen(outname, "wb")) == NULL) in test_one_file()
898 fprintf(STDERR, "Could not open output file %s\n", outname); in test_one_file()
945 fprintf(STDERR, "%s -> %s: libpng read error\n", inname, outname); in test_one_file()
963 fprintf(STDERR, "%s -> %s: libpng write error\n", inname, outname); in test_one_file()
1665 if ((fpout = fopen(outname, "rb")) == NULL) in test_one_file()
1667 fprintf(STDERR, "Could not find file %s\n", outname); in test_one_file()
1688 inname, outname); in test_one_file()
1719 outname); in test_one_file()
1761 static PNG_CONST char *outname = "pngout/png"; variable
[all …]
/external/icu/icu4j/tools/build/src/com/ibm/icu/dev/tool/docs/
DCodeMangler.java90 String outname = null; in CodeMangler() local
102 outname = args[++i]; in CodeMangler()
203 if (outname == null) { in CodeMangler()
204 outname = inname; in CodeMangler()
205 } else if (!(outname.startsWith("\\") || outname.startsWith("/"))) { in CodeMangler()
206 outname = username + File.separator + outname; in CodeMangler()
208 outdir = new File(outname); in CodeMangler()
/external/netperf/
Ddepcomp201 outname="$stripped.o"
205 sed -e "s,^$outname:,$object :," < "$tmpdepfile" > "$depfile"
206 sed -e "s,^$outname: \(.*\)$,\1:," < "$tmpdepfile" >> "$depfile"
/external/c-ares/
Ddepcomp226 outname="$stripped.o"
230 sed -e "s,^$outname:,$object :," < "$tmpdepfile" > "$depfile"
231 sed -e "s,^$outname: \(.*\)$,\1:," < "$tmpdepfile" >> "$depfile"
/external/libogg/
Ddepcomp226 outname="$stripped.o"
230 sed -e "s,^$outname:,$object :," < "$tmpdepfile" > "$depfile"
231 sed -e "s,^$outname: \(.*\)$,\1:," < "$tmpdepfile" >> "$depfile"
/external/libvorbis/
Ddepcomp226 outname="$stripped.o"
230 sed -e "s,^$outname:,$object :," < "$tmpdepfile" > "$depfile"
231 sed -e "s,^$outname: \(.*\)$,\1:," < "$tmpdepfile" >> "$depfile"
/external/cmockery/cmockery_0_1_2/
Ddepcomp226 outname="$stripped.o"
230 sed -e "s,^$outname:,$object :," < "$tmpdepfile" > "$depfile"
231 sed -e "s,^$outname: \(.*\)$,\1:," < "$tmpdepfile" >> "$depfile"
/external/libusb/
Ddepcomp240 outname="$stripped.o"
244 sed -e "s,^$outname:,$object :," < "$tmpdepfile" > "$depfile"
245 sed -e "s,^$outname: \(.*\)$,\1:," < "$tmpdepfile" >> "$depfile"
/external/webrtc/webrtc/modules/audio_coding/codecs/isac/main/test/ReleaseTest-API/
DReleaseTest-API.cc42 char inname[100], outname[100], bottleneck_file[100], vadfile[100]; in main() local
410 sscanf(argv[argc - 1], "%s", outname); in main()
412 printf("Output file: %s\n\n", outname); in main()
419 if ((outp = fopen(outname, "wb")) == NULL) { in main()
420 printf(" Error iSAC Cannot write file %s.\n", outname); in main()
/external/e2fsprogs/debugfs/
Ddump.c103 int preserve, char *outname) in dump_file() argument
144 fix_perms("dump_file", &inode, fd, outname); in dump_file()

12