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

1 2 3 4 5 6

  /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/libcpu/
i386_gendis.c 45 FILE *outfile; variable
50 outfile = stdout;
  /external/dropbear/
dropbearconvert.c 34 const char* outfile);
63 const char* outfile; local
100 outfile = argv[4];
102 return do_convert(intype, infile, outtype, outfile);
111 const char* outfile) {
137 if (import_write(outfile, key, NULL, outtype) != 1) {
138 fprintf(stderr, "Error writing key to '%s'\n", outfile);
140 fprintf(stderr, "Wrote key to '%s'\n", outfile);
  /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/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);
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/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:__anon21415
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/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/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:__anon26644
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;
  /frameworks/compile/slang/
slang-data.c 8 fprintf(stderr, "Usage: %s PREFIX OUTFILE INFILE\n", argv[0]);
24 FILE *outfile = fopen(outfile_name, "w"); local
26 if (!outfile) {
34 fprintf(outfile, "#ifndef %s_data_pack_h\n", prefix);
35 fprintf(outfile, "#define %s_data_pack_h\n\n", prefix);
39 fprintf(outfile, "#include <stddef.h>\n\n");
43 fprintf(outfile, "static const char %s_data[] =\n", prefix);
57 fprintf(outfile,
71 fprintf(outfile, "\"");
74 fprintf(outfile, "\\x%02x", buf[i])
    [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/srec/tools/grxmlcompile/
hashmap.cpp 158 ofstream outfile; local
159 outfile.open ( fileName.c_str() );
162 outfile << pos->first << " " << pos->second << std::endl;
164 outfile.close();

Completed in 650 milliseconds

1 2 3 4 5 6