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

1 2 3 4 5 6 7

  /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/libvpx/source/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/chromium_org/third_party/openssl/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);
  /external/chromium_org/third_party/openssl/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/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:__anon26497
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);
  /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);
  /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/qemu/distrib/jpeg-6b/
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:__anon33004
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;
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/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);

Completed in 2871 milliseconds

1 2 3 4 5 6 7