/external/e2fsprogs/lib/et/ |
D | et_c.awk | 3 outfn = outfile 124 print "/*" > outfile 125 print " * " outfn ":" > outfile 126 print " * This file is automatically generated; please do not edit it." > outfile 127 print " */" > outfile 129 print "" > outfile 130 print "#include <stdlib.h>" > outfile 131 print "" > outfile 132 print "#define N_(a) a" > outfile 133 print "" > outfile [all …]
|
D | et_h.awk | 3 outfn = outfile 128 print "/*" > outfile 129 print " * " outfn ":" > outfile 130 print " * This file is automatically generated; please do not edit it." > outfile 131 print " */" > outfile 132 print "" > outfile 133 print "#include <et/com_err.h>" > outfile 134 print "" > outfile 144 curr_sign*curr_low > outfile 147 curr_low > outfile [all …]
|
/external/libcups/man/ |
D | mantohtml.c | 47 *outfile; /* Output file */ in main() local 91 if ((outfile = fopen(argv[2], "w")) == NULL) in main() 99 outfile = stdout; in main() 110 "href=\"../cups-printable.css\">\n", outfile); in main() 144 fprintf(outfile, in main() 162 fputs(end_fonts[font], outfile); in main() 167 fprintf(outfile, "</%s>\n", list); in main() 172 fputs("<h2 class=\"title\"><a name=\"", outfile); in main() 174 fputs("<h3><a name=\"", outfile); in main() 178 fputs(anchor, outfile); in main() [all …]
|
/external/adhd/cras/src/common/ |
D | edid_utils.c | 12 void show_edid_data(FILE *outfile, unsigned char *edid_data, int items, in show_edid_data() argument 19 fprintf(outfile, " 0x%04x: ", item + base); in show_edid_data() 21 fprintf(outfile, "%02x ", edid_data[item++]); in show_edid_data() 25 fprintf(outfile, "\n"); in show_edid_data() 159 int show_test_edid(FILE *outfile, int n) in show_test_edid() argument 163 fprintf(outfile, "Test EDID %d\n", n); in show_test_edid() 164 show_edid(outfile, test_edids[n - 1], 1); in show_test_edid() 181 void show_edid_dtd(FILE *outfile, unsigned char *base) in show_edid_dtd() argument 209 fprintf(outfile, in show_edid_dtd() 214 fprintf(outfile, "H: start %d, end %d, total %d\n", hres + hso, in show_edid_dtd() [all …]
|
/external/e2fsprogs/lib/ss/ |
D | ct_c.awk | 4 rootname, rootname > outfile 5 print "#include <ss/ss.h>" > outfile 6 print "" >outfile 13 printf "static char const * const ssu%05d[] = {\n", cmdnum > outfile 26 printf "%s\"%s\",\n", cmdtab, cmd > outfile 41 print " (char const *)0" > outfile 42 print "};" > outfile 43 printf "extern void %s __SS_PROTO;\n", subr > outfile 58 print "#__ERROR_IN_FILE__" > outfile 62 printf "static ss_request_entry ssu%05d[] = {\n", cmdnum+1 > outfile [all …]
|
/external/icu/icu4c/source/tools/gensprep/ |
D | filterRFC3454.pl | 71 $outfile = $destDir."/".$destFileName; 73 unlink($outfile); 74 $outFH = IO::File->new($outfile,"a") 75 or die "could not open the file $outfile for writing: $! \n"; 97 createUnassignedTable($inFH,$outfile); 100 createMapToNothing($inFH,$outfile); 103 createCaseMapNorm($inFH,$outfile); 106 createCaseMapNoNorm($inFH,$outfile); 109 createProhibitedTable($inFH,$outfile,$line); 112 createProhibitedTable($inFH,$outfile,$line); [all …]
|
/external/skia/tools/skpbench/ |
D | sheet.py | 95 def print_csv(self, outfile=sys.stdout): argument 97 print(get_qualified_name(FLAGS.result, self.sheet_qualifiers), file=outfile) 100 outfile.write('bench,') 102 outfile.write('%s,' % fullconfig.qualified_name(self.config_qualifiers)) 103 outfile.write('\n') 107 outfile.write('%s,' % bench) 110 outfile.write('%s,' % row[fullconfig]) 112 outfile.write('NULL,') 117 outfile.write('\n') 121 outfile.write('\n') [all …]
|
/external/skqp/tools/skpbench/ |
D | sheet.py | 95 def print_csv(self, outfile=sys.stdout): argument 97 print(get_qualified_name(FLAGS.result, self.sheet_qualifiers), file=outfile) 100 outfile.write('bench,') 102 outfile.write('%s,' % fullconfig.qualified_name(self.config_qualifiers)) 103 outfile.write('\n') 107 outfile.write('%s,' % bench) 110 outfile.write('%s,' % row[fullconfig]) 112 outfile.write('NULL,') 117 outfile.write('\n') 121 outfile.write('\n') [all …]
|
/external/pcre/dist2/ |
D | perltest.sh | 142 $outfile = "OUTFILE"; 144 else { $outfile = "STDOUT"; } 146 printf($outfile "Perl $^V\n\n"); 158 printf $outfile "$_" if ! $interact; 183 printf $outfile "** Warning: \"$mod\" in #subject ignored\n"; 191 printf $outfile "** Warning: #-command ignored: %s", $_; 202 printf $outfile "$_" if ! $interact; 267 printf $outfile "Error: $@"; 300 printf $outfile "%s", "$_\n" if ! $interact; 348 printf $outfile "Error: $@\n"; [all …]
|
/external/llvm-project/lldb/test/API/commands/settings/ |
D | main.cpp | 19 std::ofstream outfile; in main() local 21 outfile.open("output1.txt"); in main() 23 outfile.open("output2.txt"); in main() 28 outfile << "argv[1] matches\n"; in main() 31 outfile << "argv[2] matches\n"; in main() 34 outfile << "argv[3] matches\n"; in main() 41 outfile << "Environment variable 'MY_ENV_VAR' successfully passed.\n"; in main() 50 outfile << "The host environment variable 'MY_HOST_ENV_VAR1' successfully passed.\n"; in main() 57 outfile << "The host environment variable 'MY_HOST_ENV_VAR2' successfully passed.\n"; in main() 64 outfile.close(); in main()
|
/external/vboot_reference/futility/ |
D | cmd_vbutil_key.c | 70 static int Pack(const char *infile, const char *outfile, uint64_t algorithm, in Pack() argument 76 if (!infile || !outfile) { in Pack() 83 if (0 != PublicKeyWrite(outfile, pubkey)) { in Pack() 93 if (0 != PrivateKeyWrite(outfile, privkey)) { in Pack() 106 static int Unpack(const char *infile, const char *outfile) in Unpack() argument 126 if (outfile) { in Unpack() 127 if (0 != PublicKeyWrite(outfile, pubkey)) { in Unpack() 147 if (outfile) { in Unpack() 148 if (0 != PrivateKeyWrite(outfile, privkey)) { in Unpack() 168 char *outfile = NULL; in do_vbutil_key() local [all …]
|
D | cmd_create.c | 38 static char *infile, *outfile, *outext; variable 123 if (0 != PrivateKeyWrite(outfile, privkey)) { in vb1_make_keypair() 127 fprintf(stderr, "wrote %s\n", outfile); in vb1_make_keypair() 143 if (0 != PublicKeyWrite(outfile, pubkey)) { in vb1_make_keypair() 147 fprintf(stderr, "wrote %s\n", outfile); in vb1_make_keypair() 209 if (vb2_private_key_write(privkey, outfile)) { in vb2_make_keypair() 213 fprintf(stderr, "wrote %s\n", outfile); in vb2_make_keypair() 250 if (vb2_public_key_write(pubkey, outfile)) { in vb2_make_keypair() 254 fprintf(stderr, "wrote %s\n", outfile); in vb2_make_keypair() 368 outfile = (char *)malloc(len); in do_create() [all …]
|
/external/libpcap/testprogs/fuzz/ |
D | fuzz_pcap.c | 8 FILE * outfile = NULL; variable 32 if (outfile != NULL) { in fuzz_openFile() 33 fclose(outfile); in fuzz_openFile() 35 outfile = fopen(name, "w"); in fuzz_openFile() 47 if (outfile == NULL) { in LLVMFuzzerTestOneInput() 48 outfile = fopen("/dev/null", "w"); in LLVMFuzzerTestOneInput() 49 if (outfile == NULL) { in LLVMFuzzerTestOneInput() 62 fprintf(outfile, "Couldn't open pcap file %s\n", errbuf); in LLVMFuzzerTestOneInput() 70 fprintf(outfile, "packet length=%d/%d\n",header->caplen, header->len); in LLVMFuzzerTestOneInput() 74 fprintf(outfile, "number of packets=%d\n", stats.ps_recv); in LLVMFuzzerTestOneInput()
|
D | fuzz_rserver.c | 9 FILE * outfile = NULL; variable 12 if (outfile != NULL) { in fuzz_openFile() 13 fclose(outfile); in fuzz_openFile() 15 outfile = fopen(name, "w"); in fuzz_openFile() 30 fprintf(outfile, "rpcapd[%d]:", priority); in rpcapd_log() 31 vfprintf(outfile, message, ap); in rpcapd_log() 32 putc('\n', outfile); in rpcapd_log() 43 if (outfile == NULL) { in LLVMFuzzerTestOneInput()
|
D | fuzz_rclient.c | 8 FILE * outfile = NULL; variable 12 if (outfile != NULL) { in fuzz_openFile() 13 fclose(outfile); in fuzz_openFile() 15 outfile = fopen(name, "w"); in fuzz_openFile() 31 if (outfile == NULL) { in LLVMFuzzerTestOneInput() 39 fprintf(outfile, "Couldn't open pcap file %s\n", errbuf); in LLVMFuzzerTestOneInput() 46 fprintf(outfile, "packet length=%d/%d\n",header->caplen, header->len); in LLVMFuzzerTestOneInput() 50 fprintf(outfile, "number of packets=%d\n", stats.ps_recv); in LLVMFuzzerTestOneInput()
|
D | fuzz_both.c | 9 FILE * outfile = NULL; variable 33 if (outfile != NULL) { in fuzz_openFile() 34 fclose(outfile); in fuzz_openFile() 36 outfile = fopen(name, "w"); in fuzz_openFile() 51 if (outfile == NULL) { in LLVMFuzzerTestOneInput() 52 outfile = fopen("/dev/null", "w"); in LLVMFuzzerTestOneInput() 53 if (outfile == NULL) { in LLVMFuzzerTestOneInput() 74 fprintf(outfile, "Couldn't open pcap file %s\n", errbuf); in LLVMFuzzerTestOneInput() 88 …fprintf(outfile, "packet length=%d/%d filter=%d\n",header->caplen, header->len, pcap_offline_filte… in LLVMFuzzerTestOneInput()
|
/external/python/cpython3/Programs/ |
D | _freeze_importlib.c | 38 FILE *infile = NULL, *outfile = NULL; in main() local 120 outfile = fopen(outpath, "w"); in main() 121 if (outfile == NULL) { in main() 125 fprintf(outfile, "%s\n", header); in main() 132 fprintf(outfile, "const unsigned char _Py_M__%s[] = {\n", buf); in main() 135 fprintf(outfile, " "); in main() 137 fprintf(outfile, "%u,", (unsigned int) data[i]); in main() 139 fprintf(outfile, "\n"); in main() 141 fprintf(outfile, "};\n"); in main() 146 if (outfile) { in main() [all …]
|
/external/libcups/ppdc/ |
D | ppdmerge.cxx | 44 *outfile; // Output file in main() local 55 outfile = NULL; in main() 133 if (!strcmp(locale, "en") && !inname && !outfile) in main() 203 outfile = cupsFileOpen(outname, "w9"); in main() 205 outfile = cupsFileOpen(outname, "w"); in main() 208 outfile = cupsFileStdout(); in main() 211 cupsFilePrintf(outfile, "%s\n", line); in main() 214 cupsFilePrintf(outfile, "*cupsLanguages: \"%s", locale); in main() 216 cupsFilePrintf(outfile, " %s", locale); in main() 217 cupsFilePuts(outfile, "\"\n"); in main() [all …]
|
/external/toybox/scripts/ |
D | mkstatus.py | 99 outfile=open("www/status.gen", "w") variable 100 outfile.write("<h1>Status of toybox %s</h1>\n" % version[0]); 101 outfile.write("<h3>Legend: [posix] <lsb> (development) {android}\n") 102 outfile.write("=klibc= #sash# @sbase@ *beastiebox* $tizen$ %shell% +request+ other\n") 103 outfile.write("<strike>pending</strike></h3>\n"); 105 outfile.write("<a name=done><h2><a href=#done>Completed</a></h2><blockquote><p>%s</p></blockquote>\… 106 outfile.write("<a name=part><h2><a href=#part>Partially implemented</a></h2><blockquote><p>%s</p></… 107 outfile.write("<a name=todo><h2><a href=#todo>Not started yet</a></h2><blockquote><p>%s</p></blockq… 111 outfile.write("<hr><h2>Categories of remaining todo items</h2>") 127 outfile.write("<a name=%s><h2><a href=#%s>%s<a></h2><blockquote><p>" % (i,i,k)) [all …]
|
/external/capstone/suite/fuzz/ |
D | fuzz_disasm.c | 21 static FILE *outfile = NULL; variable 204 if (outfile == NULL) { in LLVMFuzzerTestOneInput() 206 outfile = fopen("/dev/null", "w"); in LLVMFuzzerTestOneInput() 207 if (outfile == NULL) { in LLVMFuzzerTestOneInput() 231 fprintf(outfile, "0x%"PRIx64":\t%s\t\t%s // insn-ID: %u, insn-mnem: %s\n", in LLVMFuzzerTestOneInput() 238 fprintf(outfile, "\tImplicit registers read: "); in LLVMFuzzerTestOneInput() 240 fprintf(outfile, "%s ", cs_reg_name(handle, detail->regs_read[n])); in LLVMFuzzerTestOneInput() 245 fprintf(outfile, "\tImplicit registers modified: "); in LLVMFuzzerTestOneInput() 247 fprintf(outfile, "%s ", cs_reg_name(handle, detail->regs_write[n])); in LLVMFuzzerTestOneInput() 252 fprintf(outfile, "\tThis instruction belongs to groups: "); in LLVMFuzzerTestOneInput() [all …]
|
/external/webrtc/common_audio/ |
D | wav_file_unittest.cc | 38 const std::string outfile = test::OutputPath() + "wavtest1.wav"; in TEST() local 41 WavWriter w(outfile, 14099, 1); in TEST() 53 FILE* f = fopen(outfile.c_str(), "ab"); in TEST() 83 EXPECT_EQ(kContentSize, test::GetFileSize(outfile)); in TEST() 84 FILE* f = fopen(outfile.c_str(), "rb"); in TEST() 92 WavReader r(outfile); in TEST() 115 std::string outfile = test::OutputPath() + "wavtest3.wav"; in TEST() local 128 WavWriter w(outfile, kSampleRate, kNumChannels, wav_format); in TEST() 145 test::GetFileSize(outfile)); in TEST() 148 test::GetFileSize(outfile)); in TEST() [all …]
|
/external/rust/crates/libz-sys/src/zlib/examples/ |
D | gun.c | 120 int outfile; member 140 if (me->outfile != -1) in out() 145 ret = (int)write(me->outfile, buf, ret); in out() 201 int outfile, z_stream *strm) in lunpipe() argument 222 outd.outfile = outfile; in lunpipe() 383 local int gunpipe(z_stream *strm, int infile, int outfile) in gunpipe() argument 415 ret = lunpipe(have, next, indp, outfile, strm); in gunpipe() 467 outd.outfile = outfile; in gunpipe() 551 int infile, outfile; in gunzip() local 566 outfile = -1; in gunzip() [all …]
|
/external/toolchain-utils/android_bench_suite/ |
D | gen_json.py | 61 def create_outfile(outfile, bench): argument 62 with open(outfile, 'w') as fout: 67 def get_outfile(outfile, bench): argument 69 return open(outfile) 71 create_outfile(outfile, bench) 72 return open(outfile) 79 outfile = arguments.output 87 with get_outfile(outfile, bench) as fout: 91 with open(outfile, 'w') as fout:
|
/external/python/cpython3/Tools/scripts/ |
D | generate_token.py | 90 def make_h(infile, outfile='Include/token.h'): argument 97 if update_file(outfile, token_h_template % ( 102 print("%s regenerated from %s" % (outfile, infile)) 161 def make_c(infile, outfile='Parser/token.c'): argument 180 if update_file(outfile, token_c_template % ( 186 print("%s regenerated from %s" % (outfile, infile)) 197 def make_rst(infile, outfile='Doc/library/token-list.inc'): argument 209 if update_file(outfile, token_inc_template % '\n'.join(names)): 210 print("%s regenerated from %s" % (outfile, infile)) 243 def make_py(infile, outfile='Lib/token.py'): argument [all …]
|
/external/pcre/dist2/src/ |
D | pcre2test.c | 908 static FILE *outfile; variable 1274 pcre2_printint_8(compiled_code8,outfile,a); \ 1276 pcre2_printint_16(compiled_code16,outfile,a); \ 1278 pcre2_printint_32(compiled_code32,outfile,a) 1784 G(pcre2_printint_,BITONE)(G(compiled_code,BITONE),outfile,a); \ 1786 G(pcre2_printint_,BITTWO)(G(compiled_code,BITTWO),outfile,a) 2068 #define PCRE2_PRINTINT(a) pcre2_printint_8(compiled_code8,outfile,a) 2175 #define PCRE2_PRINTINT(a) pcre2_printint_16(compiled_code16,outfile,a) 2282 #define PCRE2_PRINTINT(a) pcre2_printint_32(compiled_code32,outfile,a) 2748 fprintf(outfile, "** malloc() failed for %" SIZ_FORM "\n", SIZ_CAST size); in my_malloc() [all …]
|