Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/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()
/netbsd-src/external/apache2/llvm/dist/clang/tools/clang-scan-deps/
H A DClangScanDeps.cpp77 llvm::SmallString<64> OutputFile, ErrorFile; in findResourceDir() local
81 "" /*no-suffix*/, ErrorFile); in findResourceDir()
83 llvm::FileRemover ErrorRemover(ErrorFile.c_str()); in findResourceDir()
87 StringRef(ErrorFile), in findResourceDir()
91 auto ErrorBuf = llvm::MemoryBuffer::getFile(ErrorFile.c_str()); in findResourceDir()