Searched defs:outfile (Results 1 - 25 of 89) sorted by relevance

1234

/external/elfutils/libcpu/
H A Di386_gendis.c48 FILE *outfile; variable
53 outfile = stdout;
/external/libvpx/libvpx/
H A Divfenc.c16 void ivf_write_file_header(FILE *outfile, const struct vpx_codec_enc_cfg *cfg, argument
34 fwrite(header, 1, 32, outfile);
37 void ivf_write_frame_header(FILE *outfile, int64_t pts, size_t frame_size) { argument
43 fwrite(header, 1, 12, outfile);
46 void ivf_write_frame_size(FILE *outfile, size_t frame_size) { argument
50 fwrite(header, 1, 4, outfile);
/external/curl/src/
H A Dtool_dirhie.c94 CURLcode create_dir_hierarchy(const char *outfile, FILE *errors) argument
103 outlen = strlen(outfile);
104 outdup = strdup(outfile);
/external/doclava/src/com/google/doclava/
H A DDocFile.java113 public static void writePage(String docfile, String relative, String outfile, Data hdf) { argument
116 * System.out.println("docfile='" + docfile + "' relative='" + relative + "'" + "' outfile='" +
117 * outfile + "'");
181 ClearPage.write(hdf, "docpage.cs", outfile);
183 String filename = outfile;
339 PageMetadata.setPageMetadata(docfile, relative, outfile, hdf, Doclava.sTaglist);
343 outfile = outfile.replaceFirst("^intl/", "");
346 ClearPage.write(hdf, "docpage.cs", outfile);
/external/libvpx/libvpx/examples/
H A Dsimple_decoder.c91 fprintf(stderr, "Usage: %s <infile> <outfile>\n", exec_name);
97 FILE *outfile = NULL; local
110 if (!(outfile = fopen(argv[2], "wb")))
133 vpx_img_write(img, outfile);
146 fclose(outfile);
H A Ddecode_with_drops.c69 fprintf(stderr, "Usage: %s <infile> <outfile> <N-M|N/M>\n", exec_name);
75 FILE *outfile = NULL; local
92 if (!(outfile = fopen(argv[2], "wb")))
130 vpx_img_write(img, outfile);
145 fclose(outfile);
H A Dpostproc.c56 fprintf(stderr, "Usage: %s <infile> <outfile>\n", exec_name);
62 FILE *outfile = NULL; local
76 if (!(outfile = fopen(argv[2], "wb")))
119 vpx_img_write(img, outfile);
131 fclose(outfile);
H A Ddecode_to_md5.c74 fprintf(stderr, "Usage: %s <infile> <outfile>\n", exec_name);
80 FILE *outfile = NULL; local
93 if (!(outfile = fopen(argv[2], "wb")))
119 print_md5(outfile, digest);
120 fprintf(outfile, " img-%dx%d-%04d.i420\n", img->d_w, img->d_h,
130 fclose(outfile);
/external/toybox/scripts/
H A Dmkstatus.py99 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] &lt;lsb&gt; (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>\n" % "\n".join(done))
106 outfile.write("<a name=part><h2><a href=#part>Partially implemented</a></h2><blockquote><p>%s</p></blockquote>\n" % "\n".join(pend))
107 outfile.write("<a name=todo><h2><a href=#todo>Not started yet</a></h2><blockquote><p>%s</p></blockquote>\n" % "\n".join(todo))
111 outfile.write("<hr><h2>Categories of remaining todo items</h2>")
127 outfile
[all...]
/external/google-breakpad/src/common/tests/
H A Dfile_utils.cc51 int outfile = HANDLE_EINTR(creat(to_path, 0666)); local
52 if (outfile < 0) {
75 outfile,
91 if (IGNORE_EINTR(close(outfile)) == -1) {
/external/icu/icu4j/tools/build/src/com/ibm/icu/dev/tool/docs/
H A DCollectAPI.java35 void writeHTML(String outfile, BitSet filter) throws IOException { argument
43 FileOutputStream fos = new FileOutputStream(outfile);
149 void writeTSV(String outfile, BitSet filter) throws IOException { argument
150 FileOutputStream fos = new FileOutputStream(outfile);
193 String outfile = null;
233 outfile = args[i];
254 if (outfile == null) {
255 outfile = "api.tsv";
257 collection.writeTSV(outfile, filter);
259 if (outfile
[all...]
/external/libjpeg-turbo/
H A Dexample.c91 FILE *outfile; /* target file */ local
114 if ((outfile = fopen(filename, "wb")) == NULL) {
118 jpeg_stdio_dest(&cinfo, outfile);
169 fclose(outfile);
H A Djdatadst.c37 FILE *outfile; /* target stream */ member in struct:__anon10723
119 if (JFWRITE(dest->outfile, dest->buffer, OUTPUT_BUF_SIZE) !=
179 if (JFWRITE(dest->outfile, dest->buffer, datacount) != datacount)
182 fflush(dest->outfile);
184 if (ferror(dest->outfile))
207 jpeg_stdio_dest (j_compress_ptr cinfo, FILE *outfile) argument
232 dest->outfile = outfile;
H A Dwrtarga.c165 FILE *outfile; local
183 outfile = dest->pub.output_file;
185 putc(GETJSAMPLE(cinfo->colormap[2][i]), outfile);
186 putc(GETJSAMPLE(cinfo->colormap[1][i]), outfile);
187 putc(GETJSAMPLE(cinfo->colormap[0][i]), outfile);
/external/webrtc/webrtc/modules/media_file/
H A Dmedia_file_unittest.cc67 std::string outfile = webrtc::test::OutputPath() + "wavtest.wav"; local
70 outfile.c_str(), webrtc::kFileFormatWavFile, codec));
93 EXPECT_EQ(kHeaderSize + kPayloadSize, webrtc::test::GetFileSize(outfile));
94 FILE* f = fopen(outfile.c_str(), "rb");
/external/curl/docs/examples/
H A Dcurlgtk.c49 FILE *outfile; local
55 outfile = fopen(filename, "wb");
58 curl_easy_setopt(curl, CURLOPT_WRITEDATA, outfile);
67 fclose(outfile);
H A Dsmooth-gtk-thread.c73 FILE *outfile; local
89 outfile = fopen(urls[j], "wb");
95 curl_easy_setopt(curl, CURLOPT_WRITEDATA, outfile);
103 fclose(outfile);
/external/ltp/testcases/kernel/io/direct_io/
H A Ddiotest1.c26 * diotest1 [-b bufsize] [-n numblks] [-i infile] [-o outfile]
56 static char outfile[LEN]; /* Output file. Default "outfile" */ variable
65 "Usage: diotest1 [-b bufsize] [-n numblks] [-i infile] [-o outfile]\n");
88 strcpy(outfile, "outfile"); /* Default outfile file */
112 strcpy(outfile, optarg);
130 fd2 = SAFE_OPEN(cleanup, outfile, O_DIRECT | O_RDWR | O_CREAT, 0666);
143 /* Copy infile to outfile usin
[all...]
/external/selinux/restorecond/
H A Drestore.h52 FILE *outfile; member in struct:restore_opts
/external/selinux/semodule-utils/semodule_expand/
H A Dsemodule_expand.c45 FILE *fp, *outfile; local
169 outfile = fopen(outname, "w");
170 if (!outfile) {
175 sepol_policy_file_set_fp(pf, outfile);
183 fclose(outfile);
/external/selinux/semodule-utils/semodule_link/
H A Dsemodule_link.c30 printf("usage: %s [-Vv] [-o outfile] basemodpkg modpkg1 [modpkg2]...\n",
82 FILE *outfile; local
151 outfile = fopen(outname, "w");
152 if (!outfile) {
161 sepol_policy_file_set_fp(pf, outfile);
168 fclose(outfile);
/external/toybox/toys/posix/
H A Duniq.c63 FILE *infile = stdin, *outfile = stdout; local
68 if (toys.optc >= 2) outfile = xfopen(toys.optargs[1], "w");
99 print_line(outfile, prevline);
113 print_line(outfile, prevline);
116 if (outfile != stdout) fclose(outfile);
/external/vboot_reference/futility/
H A Dcmd_load_fmap.c94 char *outfile = 0; local
106 outfile = optarg;
141 if (outfile)
142 futil_copy_file_or_die(infile, outfile);
144 outfile = infile;
146 fd = open(outfile, O_RDWR);
149 outfile, strerror(errno));
194 outfile, strerror(errno));
H A Dcmd_vbutil_key.c46 "Usage: " MYNAME " %s --pack <outfile> [PARAMETERS]\n"
70 static int Pack(const char *infile, const char *outfile, uint64_t algorithm, argument
76 if (!infile || !outfile) {
83 if (0 != PublicKeyWrite(outfile, pubkey)) {
93 if (0 != PrivateKeyWrite(outfile, privkey)) {
106 static int Unpack(const char *infile, const char *outfile) argument
126 if (outfile) {
127 if (0 != PublicKeyWrite(outfile, pubkey)) {
147 if (outfile) {
148 if (0 != PrivateKeyWrite(outfile, privke
168 char *outfile = NULL; local
[all...]
/external/webrtc/webrtc/common_audio/
H A Dwav_file_unittest.cc28 const std::string outfile = test::OutputPath() + "wavtest1.wav"; local
31 WavWriter w(outfile, 14099, 1);
43 FILE* f = fopen(outfile.c_str(), "ab");
70 EXPECT_EQ(kContentSize, test::GetFileSize(outfile));
71 FILE* f = fopen(outfile.c_str(), "rb");
79 WavReader r(outfile);
93 const std::string outfile = test::OutputPath() + "wavtest2.wav"; local
94 rtc_WavWriter* w = rtc_WavOpen(outfile.c_str(), 11904, 2);
126 EXPECT_EQ(kContentSize, test::GetFileSize(outfile));
127 FILE* f = fopen(outfile
137 std::string outfile = test::OutputPath() + "wavtest3.wav"; local
[all...]

Completed in 460 milliseconds

1234