HomeSort by relevance Sort by last modified time
    Searched defs:outfile (Results 51 - 66 of 66) sorted by null

1 23

  /external/openssl/crypto/bn/
bntest.c 142 char *outfile=NULL; local
157 outfile= *(++argv);
169 if (outfile == NULL)
175 if (!BIO_write_filename(out,outfile))
177 perror(outfile);
    [all...]
  /frameworks/base/tools/localize/
localize.cpp 504 do_pseudo(const string& infile, const string& outfile, bool expand)
515 err = write_to_file(outfile, xliff->ToString());
589 "usage: localize pseudo OPTIONS INFILE [OUTFILE]\n"
594 "OUTFILE is specified, the results are written there; otherwise, the results are\n"
682 string outfile; local
690 outfile = argv[index];
697 return do_xlb_export(outfile, resFiles);
701 string outfile; local
721 outfile = argv[index];
725 outfile = argv[index+1]
    [all...]
  /external/libvpx/
ivfdec.c 245 FILE *outfile = out = strcmp("-", out_fn) ? fopen(out_fn, "wb") : stdout; local
247 if (!outfile)
ivfenc.c 353 static void write_ivf_file_header(FILE *outfile,
377 fwrite(header, 1, 32, outfile);
381 static void write_ivf_frame_header(FILE *outfile,
395 fwrite(header, 1, 12, outfile);
599 FILE *infile, *outfile; local
984 outfile = strcmp(out_fn, "-") ? fopen(out_fn, "wb") : stdout;
986 if (!outfile)
    [all...]
  /external/openssl/apps/
cms.c 109 char *infile = NULL, *outfile = NULL, *rctfile = NULL; local
499 outfile = *++args;
859 if (outfile)
861 if (!(out = BIO_new_file(outfile, outmode)))
864 "Can't open output file %s\n", outfile);
    [all...]
ocsp.c 134 char *outfile = NULL; local
185 outfile = *args;
624 if(outfile) out = BIO_new_file(outfile, "w");
    [all...]
req.c 175 char *infile,*outfile,*prog,*keyfile=NULL,*template=NULL,*keyout=NULL; local
208 outfile=NULL;
275 outfile= *(++argv);
396 BIO_printf(bio_err,"%s [options] <infile >outfile\n",prog);
959 if (outfile == NULL)
971 if ((keyout != NULL) && (strcmp(outfile,keyout) == 0))
972 i=(int)BIO_append_filename(out,outfile);
974 i=(int)BIO_write_filename(out,outfile);
977 perror(outfile);
1044 BIO_printf(bio_err,"bad output format specified for outfile\n")
    [all...]
x509.c 182 char *infile=NULL,*outfile=NULL,*keyfile=NULL,*CAfile=NULL; local
307 outfile= *(++argv);
673 if (outfile == NULL)
685 if (BIO_write_filename(out,outfile) <= 0)
687 perror(outfile);
1063 BIO_printf(bio_err,"bad output format specified for outfile\n");
    [all...]
ca.c 274 char *outfile=NULL; local
431 outfile= *(++argv);
1004 if (outfile != NULL)
1006 if (BIO_write_filename(Sout,outfile) <= 0)
1008 perror(outfile);
1187 if (outfile)
    [all...]
  /external/zlib/contrib/untgz/
untgz.c 393 FILE *outfile = NULL; local
482 outfile = fopen(fname,"wb");
483 if (outfile == NULL) {
490 outfile = fopen(fname,"wb");
493 if (outfile != NULL)
499 outfile = NULL;
531 if (outfile != NULL)
533 if (fwrite(&buffer,sizeof(char),bytes,outfile) != bytes)
537 fclose(outfile);
538 outfile = NULL
    [all...]
  /external/icu4c/extra/uconv/
uconv.cpp 591 FILE * outfile, int verbose);
614 FILE * outfile, int verbose)
1124 FILE *outfile; local
    [all...]
  /external/qemu/
savevm.c 292 FILE *outfile; member in struct:QEMUFileStdio
299 fseek(s->outfile, pos, SEEK_SET);
300 fwrite(buf, 1, size, s->outfile);
307 fseek(s->outfile, pos, SEEK_SET);
308 return fread(buf, 1, size, s->outfile);
314 fclose(s->outfile);
325 s->outfile = fopen(filename, mode);
326 if (!s->outfile)
335 if (s->outfile)
336 fclose(s->outfile);
    [all...]
  /external/srec/tools/grxmlcompile/
grxmldoc.cpp 1027 ofstream outfile; local
1080 outfile.open ( fileName.c_str() );
1089 outfile << label << " " << index << std::endl;
1093 outfile.close();
1099 ofstream outfile; local
1102 outfile.open ( fileName.c_str() );
1104 outfile << index << " " << label << std::endl;
1107 outfile << index << " " << label << std::endl;
1109 outfile.close();
1117 ofstream outfile; local
    [all...]
  /external/sqlite/dist/
shell.c 1277 char outfile[FILENAME_MAX]; \/* Filename for *out *\/ member in struct:callback_data
    [all...]
  /external/chromium/third_party/icu/source/test/intltest/
rbbitst.cpp 825 FILE *outfile = fopen(filename,"w"); local
    [all...]
  /prebuilt/common/ant/
ant.jar 

Completed in 773 milliseconds

1 23