HomeSort by relevance Sort by last modified time
    Searched defs:outfile (Results 1 - 25 of 91) sorted by null

1 2 3 4

  /external/chromium_org/tools/gyp/test/actions/generated-header/
action.py 10 outfile = sys.argv[1] variable
11 open(outfile, 'w').write('const char kFoo[] = "%s";' % sys.argv[2])
  /external/chromium_org/tools/gyp/test/actions/src/
confirm-dep-files.py 17 outfile = sys.argv[1] # Example value we expect: deps_all_done_first_123.txt variable
21 open(outfile, "w")
  /external/chromium_org/tools/gyp/test/restat/src/
create_intermediate.py 14 outfile = sys.argv[1] variable
15 if os.path.exists(outfile):
17 open(outfile, "wb").close()
  /external/elfutils/0.153/libcpu/
i386_gendis.c 45 FILE *outfile; variable
50 outfile = stdout;
  /external/lldb/test/settings/
main.cpp 28 std::ofstream outfile; local
30 outfile.open("output1.txt");
32 outfile.open("output2.txt");
37 outfile << "argv[1] matches\n";
40 outfile << "argv[2] matches\n";
43 outfile << "argv[3] matches\n";
50 outfile << "Environment variable 'MY_ENV_VAR' successfully passed.\n";
59 outfile << "The host environment variable 'MY_HOST_ENV_VAR1' successfully passed.\n";
66 outfile << "The host environment variable 'MY_HOST_ENV_VAR2' successfully passed.\n";
73 outfile.close()
    [all...]
  /bootable/recovery/tools/ota/
convert-to-bmp.py 11 outfile = sys.argv[2] variable
13 if not outfile.endswith(".bmp"):
18 im.save(outfile)
67 f = open(outfile, "wb")
  /external/chromium_org/third_party/libjpeg_turbo/
example.c 91 FILE * outfile; /* target file */ local
114 if ((outfile = fopen(filename, "wb")) == NULL) {
118 jpeg_stdio_dest(&cinfo, outfile);
169 fclose(outfile);
  /external/chromium_org/third_party/libvpx/source/libvpx/examples/
postproc.c 56 fprintf(stderr, "Usage: %s <infile> <outfile>\n", exec_name);
62 FILE *outfile = NULL; local
78 if (!(outfile = fopen(argv[2], "wb")))
123 vpx_img_write(img, outfile);
136 fclose(outfile);
simple_decoder.c 92 fprintf(stderr, "Usage: %s <infile> <outfile>\n", exec_name);
98 FILE *outfile = NULL; local
113 if (!(outfile = fopen(argv[2], "wb")))
137 vpx_img_write(img, outfile);
151 fclose(outfile);
decode_with_drops.c 69 fprintf(stderr, "Usage: %s <infile> <outfile> <N-M|N/M>\n", exec_name);
75 FILE *outfile = NULL; local
94 if (!(outfile = fopen(argv[2], "wb")))
133 vpx_img_write(img, outfile);
149 fclose(outfile);
  /external/chromium_org/third_party/webrtc/modules/media_file/source/
media_file_unittest.cc 55 std::string outfile = webrtc::test::OutputPath() + "wavtest.wav"; local
58 outfile.c_str(), webrtc::kFileFormatWavFile, codec));
82 webrtc::test::GetFileSize(outfile));
83 FILE* f = fopen(outfile.c_str(), "rb");
  /external/jpeg/
example.c 91 FILE * outfile; /* target file */ local
114 if ((outfile = fopen(filename, "wb")) == NULL) {
118 jpeg_stdio_dest(&cinfo, outfile);
169 fclose(outfile);
jdatadst.c 28 FILE * outfile; /* target stream */ member in struct:__anon2247
85 if (JFWRITE(dest->outfile, dest->buffer, OUTPUT_BUF_SIZE) !=
113 if (JFWRITE(dest->outfile, dest->buffer, datacount) != datacount)
116 fflush(dest->outfile);
118 if (ferror(dest->outfile))
130 jpeg_stdio_dest (j_compress_ptr cinfo, FILE * outfile)
150 dest->outfile = outfile;
  /external/libvpx/libvpx/examples/
postproc.c 58 fprintf(stderr, "Usage: %s <infile> <outfile>\n", exec_name);
64 FILE *outfile = NULL; local
80 if (!(outfile = fopen(argv[2], "wb")))
125 vpx_img_write(img, outfile);
138 fclose(outfile);
simple_decoder.c 96 fprintf(stderr, "Usage: %s <infile> <outfile>\n", exec_name);
102 FILE *outfile = NULL; local
117 if (!(outfile = fopen(argv[2], "wb")))
141 vpx_img_write(img, outfile);
155 fclose(outfile);
decode_with_drops.c 71 fprintf(stderr, "Usage: %s <infile> <outfile> <N-M|N/M>\n", exec_name);
77 FILE *outfile = NULL; local
96 if (!(outfile = fopen(argv[2], "wb")))
135 vpx_img_write(img, outfile);
151 fclose(outfile);
  /external/openssl/apps/
gendsa.c 83 char *outfile=NULL; local
109 outfile= *(++argv);
233 if (outfile == NULL)
245 if (BIO_write_filename(out,outfile) <= 0)
247 perror(outfile);
nseq.c 72 char **args, *infile = NULL, *outfile = NULL; local
92 outfile = *args;
116 if (outfile) {
117 if (!(out = BIO_new_file (outfile, "w"))) {
119 "Can't open output file %s\n", outfile);
pkeyparam.c 71 char **args, *infile = NULL, *outfile = NULL; local
106 outfile = *args;
158 if (outfile)
160 if (!(out = BIO_new_file (outfile, "w")))
163 "Can't open output file %s\n", outfile);
gendh.c 95 char *outfile=NULL; local
120 outfile= *(++argv);
173 if (outfile == NULL)
185 if (BIO_write_filename(out,outfile) <= 0)
187 perror(outfile);
rand.c 82 char *outfile = NULL; local
107 if ((argv[i+1] != NULL) && (outfile == NULL))
108 outfile = argv[++i];
189 if (outfile != NULL)
190 r = BIO_write_filename(out, outfile);
  /external/openssl/crypto/rc4/
rc4.c 77 char *infile=NULL,*outfile=NULL,*keystr=NULL; local
96 outfile= *(++argv);
133 if (outfile == NULL)
137 out=fopen(outfile,"w");
  /external/chromium_org/third_party/webrtc/common_audio/
wav_writer_unittest.cc 27 const std::string outfile = webrtc::test::OutputPath() + "wavtest1.wav"; local
30 webrtc::WavFile w(outfile, 14099, 1);
58 EXPECT_EQ(size_t(kContentSize), webrtc::test::GetFileSize(outfile));
59 FILE* f = fopen(outfile.c_str(), "rb");
69 const std::string outfile = webrtc::test::OutputPath() + "wavtest2.wav"; local
70 rtc_WavFile *w = rtc_WavOpen(outfile.c_str(), 11904, 2);
102 EXPECT_EQ(size_t(kContentSize), webrtc::test::GetFileSize(outfile));
103 FILE* f = fopen(outfile.c_str(), "rb");
113 std::string outfile = webrtc::test::OutputPath() + "wavtest3.wav"; local
128 webrtc::WavFile w(outfile, kSampleRate, kNumChannels)
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
genmodule.c 60 char *outfile; local
63 fprintf(stderr, "Usage: %s <module.in> <Makefile[.am]> <outfile>\n", argv[0]);
67 outfile = argv[3];
171 out = fopen(outfile, "wt");
174 fprintf(stderr, "Could not open `%s'.\n", outfile);
185 remove(outfile);
  /external/checkpolicy/
checkmodule.c 164 char *file = txtfile, *outfile = NULL; local
185 outfile = optarg;
294 if (outfile &&
295 write_binary_policy(&modpolicydb, outfile, argv[0]) == -1) {

Completed in 327 milliseconds

1 2 3 4