Home
last modified time | relevance | path

Searched refs:ErrorFile (Results 1 – 3 of 3) sorted by relevance

/llvm-project/llvm/tools/bugpoint/
H A DToolRunner.cpp92 std::ifstream ErrorFile(StdOutFileName.c_str()); in RunProgramRemotelyWithTimeout() local
93 if (ErrorFile) { in RunProgramRemotelyWithTimeout()
94 std::copy(std::istreambuf_iterator<char>(ErrorFile), in RunProgramRemotelyWithTimeout()
97 ErrorFile.close(); in RunProgramRemotelyWithTimeout()
128 std::ifstream ErrorFile(ErrorFilename.c_str()); in ProcessFailure() local
129 if (ErrorFile) { in ProcessFailure()
130 std::copy(std::istreambuf_iterator<char>(ErrorFile), in ProcessFailure()
133 ErrorFile.close(); in ProcessFailure()
/llvm-project/clang/tools/clang-scan-deps/
H A DClangScanDeps.cpp279 llvm::SmallString<64> OutputFile, ErrorFile; in findResourceDir()
283 "" /*no-suffix*/, ErrorFile); in findResourceDir()
285 llvm::FileRemover ErrorRemover(ErrorFile.c_str()); in findResourceDir()
289 ErrorFile.str(), in findResourceDir()
293 auto ErrorBuf = llvm::MemoryBuffer::getFile(ErrorFile.c_str()); in findResourceDir()
274 llvm::SmallString<64> OutputFile, ErrorFile; findResourceDir() local
/llvm-project/llvm/tools/llvm-profgen/
H A DPerfReader.cpp387 std::string ErrorFile = std::string(PerfTraceFile) + ".err"; in convertPerfDataToTrace()
390 StringRef(ErrorFile)}; // Stderr in convertPerfDataToTrace()
392 PerfScriptReader::TempFileCleanups.emplace_back(ErrorFile); in convertPerfDataToTrace()
370 std::string ErrorFile = std::string(PerfTraceFile) + ".err"; convertPerfDataToTrace() local