Searched refs:tmpFile (Results 1 – 7 of 7) sorted by relevance
/external/icu/icu4j/tools/build/src/com/ibm/icu/dev/tool/docs/ |
D | SwatDeprecated.java | 175 File tmpFile = null; in processFile() local 181 tmpFile = File.createTempFile(inFile.getName(), null, inFile.getParentFile()); in processFile() 184 tmpFile = outFile; in processFile() 185 File parent = tmpFile.getParentFile(); in processFile() 187 tmpFile.createNewFile(); in processFile() 190 String tmpPath = tmpFile.getPath(); in processFile() 196 OutputStream os = new FileOutputStream(tmpFile); in processFile() 283 if (!tmpFile.delete()) { in processFile() 294 if (!tmpFile.renameTo(bakFile)) { in processFile()
|
/external/deqp/framework/qphelper/ |
D | qpCrashHandler.c | 541 int tmpFile = mkstemp(tmpFileName); in qpCrashHandler_writeCrashInfo() local 543 if (tmpFile == -1) in qpCrashHandler_writeCrashInfo() 558 backtrace_symbols_fd(symbols, symbolCount, tmpFile); in qpCrashHandler_writeCrashInfo() 560 if (lseek(tmpFile, 0, SEEK_SET) < 0) in qpCrashHandler_writeCrashInfo() 563 close(tmpFile); in qpCrashHandler_writeCrashInfo() 592 if (read(tmpFile, &c, 1) == 1) in qpCrashHandler_writeCrashInfo() 619 close(tmpFile); in qpCrashHandler_writeCrashInfo() 620 tmpFile = -1; in qpCrashHandler_writeCrashInfo() 626 if (tmpFile == -1) in qpCrashHandler_writeCrashInfo() 630 if (tmpFile != -1) in qpCrashHandler_writeCrashInfo() [all …]
|
/external/conscrypt/openjdk/src/main/java/org/conscrypt/ |
D | NativeLibraryLoader.java | 206 File tmpFile = null; in load() local 208 tmpFile = createTempFile(prefix, suffix, WORKDIR); in load() 210 out = new FileOutputStream(tmpFile); in load() 224 loadLibrary(loader, tmpFile.getPath(), true); in load() 235 if (tmpFile != null && !tmpFile.delete()) { in load() 236 tmpFile.deleteOnExit(); in load()
|
/external/clang/www/demo/ |
D | index.cgi | 382 my $tmpFile = getname(".bc"); 385 "llvm-ld $stats -o=$tmpFile $bytecodeFile > $outputFile 2>&1", 388 system("mv $tmpFile.bc $bytecodeFile"); 389 system("rm $tmpFile"); 407 my $tmpFile = getname(".ll"); 408 system("c++filt < $disassemblyFile > $tmpFile 2>&1"); 409 system("mv $tmpFile $disassemblyFile");
|
/external/fonttools/MetaTools/ |
D | roundTrip.py | 63 for tmpFile in (xmlFile1, ttFile2, xmlFile2): 64 if os.path.exists(tmpFile): 65 os.remove(tmpFile)
|
/external/swiftshader/third_party/LLVM/test/lib/ |
D | llvm.exp | 48 proc substitute { line test tmpFile } { argument 87 regsub -all {%t} $new_line $tmpFile new_line 89 regsub -all {%abs_tmp} $new_line [file join [pwd] $tmpFile] new_line 145 set tmpFile "$filename.tmp" 171 set runline [ substitute $runline $test $tmpFile ]
|
/external/google-breakpad/src/client/mac/sender/ |
D | uploader.mm | 321 char *tmpFile = mktemp(tmpFilenameTemplate); 324 NSString *tmpFileString = [NSString stringWithUTF8String:tmpFile];
|