Searched refs:GenericBinaryError (Results 1 – 8 of 8) sorted by relevance
| /freebsd-12.1/contrib/llvm/lib/Object/ |
| H A D | WasmObjectFile.cpp | 189 return make_error<GenericBinaryError>("Invalid init_expr", in readInitExpr() 320 return make_error<GenericBinaryError>("Bad section type", in parseSection() 377 return make_error<GenericBinaryError>( in parseNameSection() 390 return make_error<GenericBinaryError>( in parseLinkingSection() 397 return make_error<GenericBinaryError>( in parseLinkingSection() 452 return make_error<GenericBinaryError>( in parseLinkingSection() 566 return make_error<GenericBinaryError>( in parseLinkingSectionSymtab() 610 return make_error<GenericBinaryError>("Invalid symbol type", in parseLinkingSectionSymtab() 654 return make_error<GenericBinaryError>( in parseLinkingSectionComdat() 663 return make_error<GenericBinaryError>( in parseLinkingSectionComdat() [all …]
|
| H A D | Error.cpp | 62 char GenericBinaryError::ID = 0; 64 GenericBinaryError::GenericBinaryError(Twine Msg) : Msg(Msg.str()) {} in GenericBinaryError() function in GenericBinaryError 66 GenericBinaryError::GenericBinaryError(Twine Msg, object_error ECOverride) in GenericBinaryError() function in GenericBinaryError 71 void GenericBinaryError::log(raw_ostream &OS) const { in log()
|
| H A D | MachOUniversal.cpp | 28 return make_error<GenericBinaryError>(std::move(StringMsg), in malformedError() 118 Err = make_error<GenericBinaryError>("File too small to be a Mach-O " in MachOUniversalBinary() 216 return make_error<GenericBinaryError>("Unknown architecture " in getObjectForArch() 224 return make_error<GenericBinaryError>("fat file does not " in getObjectForArch()
|
| H A D | WindowsResource.cpp | 52 return make_error<GenericBinaryError>( in createWindowsResource() 111 return make_error<GenericBinaryError>("Header size is too small.", in loadNext()
|
| H A D | Archive.cpp | 50 return make_error<GenericBinaryError>(std::move(StringMsg), in malformedError() 554 Err = make_error<GenericBinaryError>("File too small to be an archive", in Archive()
|
| H A D | MachOObjectFile.cpp | 62 return make_error<GenericBinaryError>("truncated or malformed object (" + in malformedError() 4619 return make_error<GenericBinaryError>("Unrecognized MachO magic number", in createMachOObjectFile()
|
| /freebsd-12.1/contrib/llvm/include/llvm/Object/ |
| H A D | Error.h | 66 class GenericBinaryError : public ErrorInfo<GenericBinaryError, BinaryError> { 69 GenericBinaryError(Twine Msg); 70 GenericBinaryError(Twine Msg, object_error ECOverride);
|
| H A D | WindowsResource.h | 88 class EmptyResError : public GenericBinaryError { 91 : GenericBinaryError(Msg, ECOverride) {} in EmptyResError()
|