Home
last modified time | relevance | path

Searched refs:TmpName (Results 1 – 15 of 15) sorted by relevance

/external/swiftshader/third_party/llvm-7.0/llvm/lib/Support/
DPath.cpp1110 TempFile::TempFile(StringRef Name, int FD) : TmpName(Name), FD(FD) {} in TempFile()
1113 TmpName = std::move(Other.TmpName); in operator =()
1127 if (!TmpName.empty()) { in discard()
1128 RemoveEC = fs::remove(TmpName); in discard()
1129 sys::DontRemoveFileOnSignal(TmpName); in discard()
1134 TmpName = ""; in discard()
1158 RenameEC = copy_file(TmpName, Name); in keep()
1167 std::error_code RenameEC = fs::rename(TmpName, Name); in keep()
1170 RenameEC = sys::fs::copy_file(TmpName, Name); in keep()
1173 remove(TmpName); in keep()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/lib/LTO/
DCaching.cpp90 MemoryBuffer::getOpenFile(TempFile.FD, TempFile.TmpName, in localCache()
95 TempFile.TmpName + ": " + in localCache()
125 TempFile.TmpName + " to " + EntryPath + ": " + in localCache()
/external/swiftshader/third_party/llvm-7.0/llvm/tools/bugpoint/
DExecutionDriver.cpp282 errs() << ToolName << ": Error emitting bitcode to file '" << Temp->TmpName in compileProgram()
288 return Interpreter->compileProgram(Temp->TmpName, Timeout, MemoryLimit); in compileProgram()
313 BitcodeFile = File->TmpName; in executeProgram()
DOptimizerDriver.cpp162 errs() << "Error writing bitcode file: " << Temp->TmpName << "\n"; in runPasses()
224 Args.push_back(Temp->TmpName.c_str()); in runPasses()
DExtractFunction.cpp410 uniqueFN += Temp->TmpName; in extractMappedBlocksFromModule()
/external/swiftshader/third_party/LLVM/lib/Linker/
DLinkModules.cpp174 SmallString<16> TmpName; in linkDefinedTypeBodies() local
201 TmpName.insert(TmpName.end(), SrcName.begin(), SrcName.end()); in linkDefinedTypeBodies()
203 DstSTy->setName(TmpName.str()); in linkDefinedTypeBodies()
204 TmpName.clear(); in linkDefinedTypeBodies()
/external/swiftshader/third_party/LLVM/lib/Support/Unix/
DPath.inc169 char *TmpName = ::mktemp(pathname);
170 if (TmpName == 0) {
172 std::string(TmpName) + ": can't create unique directory name");
175 if (-1 == ::mkdir(TmpName, S_IRWXU)) {
177 std::string(TmpName) + ": can't create temporary directory");
180 return Path(TmpName);
/external/clang/lib/Frontend/Rewrite/
DInclusionRewriter.cpp358 StringRef TmpName = PP.getSpelling(Tok, TmpBuffer, &Invalid); in HandleHasInclude() local
362 FilenameBuffer += TmpName; in HandleHasInclude()
/external/clang/lib/Driver/
DDriver.cpp783 std::string TmpName = GetTemporaryPath("response", "txt"); in setUpResponseFiles() local
785 C.addTempFile(C.getArgs().MakeArgString(TmpName.c_str()))); in setUpResponseFiles()
2215 std::string TmpName = GetTemporaryPath( in GetNamedOutputPath() local
2217 return C.addTempFile(C.getArgs().MakeArgString(TmpName.c_str())); in GetNamedOutputPath()
2312 std::string TmpName = GetTemporaryPath( in GetNamedOutputPath() local
2314 return C.addTempFile(C.getArgs().MakeArgString(TmpName.c_str())); in GetNamedOutputPath()
/external/swiftshader/third_party/llvm-7.0/llvm/tools/dsymutil/
Ddsymutil.cpp537 OutputFile = TempFile.TmpName; in main()
DMachOUtils.cpp43 llvm::StringRef ArchAndFile::path() const { return File->TmpName; } in path()
/external/llvm/lib/Linker/
DIRMover.cpp218 SmallString<16> TmpName = STy->getName(); in finishType() local
220 DTy->setName(TmpName); in finishType()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Linker/
DIRMover.cpp221 SmallString<16> TmpName = STy->getName(); in finishType() local
223 DTy->setName(TmpName); in finishType()
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Support/
DFileSystem.h787 std::string TmpName; variable
/external/clang/lib/CodeGen/
DCGObjCMac.cpp6613 SmallString<256> TmpName; in EmitProtocolList() local
6614 Name.toVector(TmpName); in EmitProtocolList()
6616 CGM.getModule().getGlobalVariable(TmpName.str(), true); in EmitProtocolList()