Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/bugpoint/
H A DToolRunner.cpp93 std::ifstream ErrorFile(StdOutFileName.c_str()); in RunProgramRemotelyWithTimeout() local
94 if (ErrorFile) { in RunProgramRemotelyWithTimeout()
95 std::copy(std::istreambuf_iterator<char>(ErrorFile), in RunProgramRemotelyWithTimeout()
98 ErrorFile.close(); in RunProgramRemotelyWithTimeout()
129 std::ifstream ErrorFile(ErrorFilename.c_str()); in ProcessFailure() local
130 if (ErrorFile) { in ProcessFailure()
131 std::copy(std::istreambuf_iterator<char>(ErrorFile), in ProcessFailure()
134 ErrorFile.close(); in ProcessFailure()
/freebsd-12.1/contrib/llvm/tools/lld/include/lld/Core/
H A DFile.h247 class ErrorFile : public File {
249 ErrorFile(StringRef path, std::error_code ec) in ErrorFile() function
/freebsd-12.1/contrib/llvm/tools/lld/lib/Driver/
H A DDarwinLdDriver.cpp99 result.push_back(llvm::make_unique<ErrorFile>(path, ec)); in makeErrorFile()