HomeSort by relevance Sort by last modified time
    Searched refs:outfile (Results 251 - 275 of 329) sorted by null

<<11121314

  /external/chromium_org/net/tools/tld_cleanup/
make_dafsa.py 461 print('usage: %s infile outfile' % sys.argv[0])
463 with open(sys.argv[1], 'r') as infile, open(sys.argv[2], 'w') as outfile:
464 outfile.write(words_to_cxx(parse_gperf(infile)))
  /external/chromium_org/third_party/openssl/openssl/apps/
req.c 175 char *infile,*outfile,*prog,*keyfile=NULL,*template=NULL,*keyout=NULL; local
208 outfile=NULL;
275 outfile= *(++argv);
405 BIO_printf(bio_err,"%s [options] <infile >outfile\n",prog);
970 if (outfile == NULL)
982 if ((keyout != NULL) && (strcmp(outfile,keyout) == 0))
983 i=(int)BIO_append_filename(out,outfile);
985 i=(int)BIO_write_filename(out,outfile);
988 perror(outfile);
1055 BIO_printf(bio_err,"bad output format specified for outfile\n")
    [all...]
cms.c 109 char *infile = NULL, *outfile = NULL, *rctfile = NULL; local
509 outfile = *++args;
869 if (outfile)
871 if (!(out = BIO_new_file(outfile, outmode)))
874 "Can't open output file %s\n", outfile);
    [all...]
x509.c 184 char *infile=NULL,*outfile=NULL,*keyfile=NULL,*CAfile=NULL; local
318 outfile= *(++argv);
682 if (outfile == NULL)
694 if (BIO_write_filename(out,outfile) <= 0)
696 perror(outfile);
1073 BIO_printf(bio_err,"bad output format specified for outfile\n");
    [all...]
ocsp.c 134 char *outfile = NULL; local
185 outfile = *args;
624 if(outfile) out = BIO_new_file(outfile, "w");
    [all...]
  /external/chromium_org/third_party/skia/tools/
svndiff.py 216 with open(dest_path, 'wb') as outfile:
217 proc = subprocess.Popen(args, stdout=outfile)
  /external/openssl/apps/
req.c 175 char *infile,*outfile,*prog,*keyfile=NULL,*template=NULL,*keyout=NULL; local
208 outfile=NULL;
275 outfile= *(++argv);
405 BIO_printf(bio_err,"%s [options] <infile >outfile\n",prog);
969 if (outfile == NULL)
981 if ((keyout != NULL) && (strcmp(outfile,keyout) == 0))
982 i=(int)BIO_append_filename(out,outfile);
984 i=(int)BIO_write_filename(out,outfile);
987 perror(outfile);
1054 BIO_printf(bio_err,"bad output format specified for outfile\n")
    [all...]
cms.c 109 char *infile = NULL, *outfile = NULL, *rctfile = NULL; local
509 outfile = *++args;
869 if (outfile)
871 if (!(out = BIO_new_file(outfile, outmode)))
874 "Can't open output file %s\n", outfile);
    [all...]
x509.c 184 char *infile=NULL,*outfile=NULL,*keyfile=NULL,*CAfile=NULL; local
318 outfile= *(++argv);
682 if (outfile == NULL)
694 if (BIO_write_filename(out,outfile) <= 0)
696 perror(outfile);
1073 BIO_printf(bio_err,"bad output format specified for outfile\n");
    [all...]
ocsp.c 135 char *outfile = NULL; local
186 outfile = *args;
634 if(outfile) out = BIO_new_file(outfile, "w");
    [all...]
  /external/skia/tools/
svndiff.py 216 with open(dest_path, 'wb') as outfile:
217 proc = subprocess.Popen(args, stdout=outfile)
  /external/chromium_org/tools/code_coverage/
croc.py 413 def PrintStat(self, stat, format=None, outfile=sys.stdout, **kwargs):
421 outfile: File stream to output stat to; defaults to stdout.
426 outfile.write('GetStat(%r) = %s\n' % (stat, s))
428 outfile.write(format % s + '\n')
  /external/llvm/tools/lli/
lli.cpp 277 raw_fd_ostream outfile(CacheName.c_str(), errStr, sys::fs::F_None);
278 outfile.write(Obj->getBufferStart(), Obj->getBufferSize());
279 outfile.close();
  /external/chromium_org/tools/grit/grit/node/
structure.py 167 with open(flat_filename, 'wb') as outfile:
173 outfile.write(file_contents)
  /external/chromium_org/tools/telemetry/telemetry/core/backends/chrome/
desktop_browser_backend.py 283 with open(minidump, 'wb') as outfile:
284 outfile.write(''.join(infile.read().partition('MDMP')[1:]))
  /external/chromium_org/base/
file_util_posix.cc 869 int outfile = HANDLE_EINTR(creat(to_path.value().c_str(), 0666)); local
870 if (outfile < 0) {
891 outfile,
904 if (IGNORE_EINTR(close(outfile)) < 0)
  /external/chromium_org/third_party/skia/gm/rebaseline_server/
compare_configs.py 185 '--outfile', required=True,
203 args.outfile)
  /external/libpng/contrib/gregbook/
writepng.c 82 * unexpected pnmtype; note that outfile might be stdout */
117 /* make sure outfile is (re)opened in BINARY mode */
119 png_init_io(png_ptr, mainprog_ptr->outfile);
  /external/skia/gm/rebaseline_server/
compare_configs.py 185 '--outfile', required=True,
203 args.outfile)
  /external/smack/src/org/jivesoftware/smack/util/
Base64.java     [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
cProfile.py 169 parser.add_option('-o', '--outfile', dest="outfile",
170 help="Save stats to <outfile>", default=None)
192 runctx(code, globs, None, options.outfile, options.sort)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
cProfile.py 169 parser.add_option('-o', '--outfile', dest="outfile",
170 help="Save stats to <outfile>", default=None)
192 runctx(code, globs, None, options.outfile, options.sort)
  /external/sqlite/dist/orig/
shell.c 470 char outfile[FILENAME_MAX]; /* Filename for *out */ member in struct:callback_data
    [all...]
  /external/sqlite/dist/
shell.c 475 char outfile[FILENAME_MAX]; /* Filename for *out */ member in struct:callback_data
    [all...]
  /external/linux-tools-perf/perf-3.12.0/tools/perf/util/scripting-engines/
trace-event-perl.c 458 static int perl_generate_script(struct pevent *pevent, const char *outfile)
466 sprintf(fname, "%s.pl", outfile);

Completed in 578 milliseconds

<<11121314