Home
last modified time | relevance | path

Searched refs:FileError (Results 1 – 5 of 5) sorted by relevance

/openbsd-src/gnu/llvm/llvm/lib/Support/
H A DError.cpp20 FileError, enumerator
39 case ErrorErrorCode::FileError: in message()
61 char FileError::ID = 0;
84 std::error_code FileError::convertToErrorCode() const { in convertToErrorCode()
87 return std::error_code(static_cast<int>(ErrorErrorCode::FileError), in convertToErrorCode()
/openbsd-src/gnu/llvm/llvm/include/llvm/Support/
H A DError.h1270 class FileError final : public ErrorInfo<FileError> {
1301 FileError(const Twine &F, std::optional<size_t> LineNum, in FileError() function
1317 std::unique_ptr<FileError>(new FileError(F, Line, std::move(Payload)))); in build()
1328 return FileError::build(F, std::optional<size_t>(), std::move(E)); in createFileError()
1334 return FileError::build(F, std::optional<size_t>(Line), std::move(E)); in createFileError()
/openbsd-src/gnu/llvm/llvm/lib/Target/X86/
H A DX86LoadValueInjectionLoadHardening.cpp288 std::error_code FileError; in runOnMachineFunction() local
292 raw_fd_ostream FileOut(FileName, FileError); in runOnMachineFunction()
293 if (FileError) in runOnMachineFunction()
294 errs() << FileError.message(); in runOnMachineFunction()
/openbsd-src/gnu/llvm/llvm/tools/dsymutil/
H A DDwarfLinkerForBinary.cpp206 std::unique_ptr<FileError> FE) { in remarksErrorHandler()
286 std::move(E), [&](std::unique_ptr<FileError> EC) -> Error { in loadObject()
/openbsd-src/gnu/llvm/lldb/source/Core/
H A DFormatEntity.cpp85 enum FileKind { FileError = 0, Basename, Dirname, Fullpath }; enumerator
567 case FileKind::FileError: in DumpFile()