/external/openssl/apps/ |
pkcs8.c | 73 char **args, *infile = NULL, *outfile = NULL; local 199 outfile = *args; 257 if (outfile) 259 if (!(out = BIO_new_file (outfile, "wb"))) 262 "Can't open output file %s\n", outfile);
|
dgst.c | 118 const char *outfile = NULL, *keyfile = NULL; local 169 outfile=*(++argv); 325 if(outfile) { 327 out = BIO_new_file(outfile, "wb"); 328 else out = BIO_new_file(outfile, "w"); 341 outfile ? outfile : "(stdout)");
|
crl.c | 112 char *infile=NULL,*outfile=NULL; local 181 outfile= *(++argv); 372 if (outfile == NULL) 384 if (BIO_write_filename(out,outfile) <= 0) 386 perror(outfile); 405 BIO_printf(bio_err,"bad output format specified for outfile\n");
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/examples/ |
decode_with_partial_drops.c | 196 FILE *infile, *outfile; local 212 die("Usage: %s <infile> <outfile> [-t <num threads>] <N-M|N/M|L,S>\n", 233 if(!(outfile = fopen(argv[2], "wb"))) 315 outfile); 325 fclose(outfile);
|
/frameworks/base/core/tests/coretests/src/android/os/storage/ |
StorageManagerBaseTest.java | 225 * @param outFile A File representing the file we want to copy the OBB to 228 private void copyRawToFile(int rawResId, File outFile) throws NotFoundException { 237 FileUtils.setPermissions(outFile.getPath(), FileUtils.S_IRWXU | FileUtils.S_IRWXG 239 assertTrue(FileUtils.copyToFile(is, outFile)); 240 FileUtils.setPermissions(outFile.getPath(), FileUtils.S_IRWXU | FileUtils.S_IRWXG 252 File outFile = null; 255 outFile = new File(filesDir, name); 256 copyRawToFile(rawResId, outFile); 258 if (outFile != null) { 259 outFile.delete() [all...] |
/external/chromium_org/third_party/openssl/openssl/apps/ |
dgst.c | 118 const char *outfile = NULL, *keyfile = NULL; local 169 outfile=*(++argv); 325 if(outfile) { 327 out = BIO_new_file(outfile, "wb"); 328 else out = BIO_new_file(outfile, "w"); 341 outfile ? outfile : "(stdout)");
|
rsautl.c | 89 char *infile = NULL, *outfile = NULL; local 130 outfile= *(++argv); 242 if(outfile) { 243 if(!(out = BIO_new_file(outfile, "wb"))) {
|
/external/yaffs2/yaffs2/utils/ |
mkyaffsimage.c | 56 static int outFile; 239 error = write(outFile,data,512); 261 return write(outFile,&s,sizeof(yaffs_Spare)); 561 outFile = open(argv[2],O_CREAT | O_TRUNC | O_WRONLY, S_IREAD | S_IWRITE); 564 if(outFile < 0) 575 close(outFile); 589 close(outFile);
|
/ndk/sources/host-tools/sed-4.2.1/sed/ |
fmt.c | 167 static FILE *outfile; variable 212 outfile = output_file; 252 putc ('\n', outfile); 282 putc (c, outfile); 563 putc ('\n', outfile); 576 putc (*s++, outfile); 587 putc (' ', outfile);
|
/external/emma/core/java12/com/vladium/emma/instr/ |
InstrProcessorST.java | 181 File outFile = null; 190 outFile = new File (className.replace ('.', File.separatorChar).concat (".class")); 191 fullOutFile = getFullOutFile (null, outFile, IN_CLASSES); 199 // BUG_SF989071: using outFile here instead resulted in 212 if (log.atVERBOSE ()) log.verbose ("destination file [" + outFile + "] skipped: more recent than the source"); 252 outFile = new File (className.replace ('.', File.separatorChar).concat (".class")); 253 fullOutFile = getFullOutFile (null, outFile, IN_CLASSES); 560 final File outFile = getFullOutFile (pathDir, file, IN_CLASSES); 562 addJob (new FileWriteJob (outFile, data, mkdir)); [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/chromium_org/third_party/skia/tools/ |
filtermain.cpp | 25 SkDebugf("Usage: filter -i inFile [-o outFile] [--input-dir path] [--output-dir path]\n"); 28 SkDebugf(" -o outFile : result of filtering.\n"); 664 static int filter_picture(const SkString& inFile, const SkString& outFile) { 719 if (!outFile.isEmpty()) { 725 SkFILEWStream outStream(outFile.c_str()); 764 SkString inFile, outFile, inDir, outDir; 798 outFile.set(*argv); 822 outFile = SkOSPath::SkPathJoin(outDir.c_str(), inputFilename.c_str()); 825 filter_picture(inFile, outFile); 829 filter_picture(inFile, outFile); [all...] |
/external/skia/tools/ |
filtermain.cpp | 25 SkDebugf("Usage: filter -i inFile [-o outFile] [--input-dir path] [--output-dir path]\n"); 28 SkDebugf(" -o outFile : result of filtering.\n"); 664 static int filter_picture(const SkString& inFile, const SkString& outFile) { 719 if (!outFile.isEmpty()) { 725 SkFILEWStream outStream(outFile.c_str()); 764 SkString inFile, outFile, inDir, outDir; 798 outFile.set(*argv); 822 outFile = SkOSPath::SkPathJoin(outDir.c_str(), inputFilename.c_str()); 825 filter_picture(inFile, outFile); 829 filter_picture(inFile, outFile); [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/ |
cmd.py | 354 def copy_file(self, infile, outfile, 361 infile, outfile, 367 def copy_tree(self, infile, outfile, 374 infile, outfile, 394 def make_file(self, infiles, outfile, func, args, 399 message printed if 'outfile' already exists and is newer than all 405 skip_msg = "skipping %s (inputs unchanged)" % outfile 416 (outfile, ', '.join(infiles)) 418 # If 'outfile' must be regenerated (either because it doesn't 421 if self.force or dep_util.newer_group(infiles, outfile) [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/ |
cmd.py | 354 def copy_file(self, infile, outfile, 361 infile, outfile, 367 def copy_tree(self, infile, outfile, 374 infile, outfile, 394 def make_file(self, infiles, outfile, func, args, 399 message printed if 'outfile' already exists and is newer than all 405 skip_msg = "skipping %s (inputs unchanged)" % outfile 416 (outfile, ', '.join(infiles)) 418 # If 'outfile' must be regenerated (either because it doesn't 421 if self.force or dep_util.newer_group(infiles, outfile) [all...] |
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/mediarecorder/ |
MediaRecorderTest.java | 80 int videoFormat, int outFormat, String outFile, boolean videoOnly) { 90 mRecorder.setOutputFile(outFile); 227 int videoFormat, int outFormat, String outFile, boolean videoOnly) { 237 recorder.setOutputFile(outFile); 360 int videoFormat, int outFormat, String outFile, boolean videoOnly) { 369 mRecorder.setOutputFile(outFile);
|
/external/chromium_org/third_party/skia/gm/ |
gm_json.py | 188 with io.open(file_path, mode='w', newline='', encoding='utf-8') as outfile: 189 outfile.write(unicode(json.dumps(json_dict, outfile, sort_keys=True,
|
/external/emma/tools/java/com/vladium/tools/ |
ClassDep.java | 62 final File outFile = new File (args [1]); 85 final File parent = outFile.getParentFile (); 88 final FileOutputStream out = new FileOutputStream (outFile);
|
/external/icu/icu4c/source/extra/uconv/ |
uconv.cpp | 566 FILE * outfile, int verbose); 589 FILE * outfile, int verbose) 1101 FILE *outfile; local [all...] |
/external/skia/gm/ |
gm_json.py | 188 with io.open(file_path, mode='w', newline='', encoding='utf-8') as outfile: 189 outfile.write(unicode(json.dumps(json_dict, outfile, sort_keys=True,
|
/frameworks/compile/libbcc/lib/ExecutionEngine/ |
GDBJITRegistrar.cpp | 178 std::ofstream outfile(Filename.c_str(), std::ofstream::binary); 179 outfile.write((char*)JITCodeEntry->symfile_addr, JITCodeEntry->symfile_size); 180 outfile.close();
|
/hardware/invensense/65xx/libsensors_iio/ |
MPLSupport.cpp | 262 void dump_dmp_img(const char *outFile) 275 LOGI("HAL DEBUG:write to %s", outFile); 277 read_dmp_img(dmp_path, (char *)outFile);
|
/cts/tools/cfassembler/src/dxconvext/ |
ClassFileParser.java | 80 // write the outfile to the same directory as the corresponding .java 82 String outFile = absSrcFilePath.substring(0, absSrcFilePath 86 w = new OutputStreamWriter(new FileOutputStream(new File(outFile))); 88 throw new RuntimeException("cannot write to file:"+outFile, e);
|
/external/chromium_org/ppapi/native_client/tools/browser_tester/browsertester/ |
server.py | 132 outfile = open(output_path, 'w') 141 outfile.write(data) 143 outfile.close() 155 outfile.close()
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/ |
control.py | 567 reporter.report(morfs, outfile=file, config=self.config) 601 def xml_report(self, morfs=None, outfile=None, ignore_errors=None, 607 Each module in `morfs` is included in the report. `outfile` is the 615 xml_output=outfile, 620 outfile = sys.stdout 622 outfile = open(self.config.xml_output, "w") 623 file_to_close = outfile 626 reporter.report(morfs, outfile=outfile, config=self.config)
|