Home
last modified time | relevance | path

Searched refs:ReportError (Results 1 – 14 of 14) sorted by relevance

/netbsd-src/external/gpl3/gcc/dist/libsanitizer/asan/
H A Dasan_report.cpp194 void ReportError(const ErrorDescription &description) { in ReportError() function in __asan::ScopedInErrorReport
217 in_report.ReportError(error); in ReportDeadlySignal()
223 in_report.ReportError(error); in ReportDoubleFree()
232 in_report.ReportError(error); in ReportNewDeleteTypeMismatch()
238 in_report.ReportError(error); in ReportFreeNotMalloced()
247 in_report.ReportError(error); in ReportAllocTypeMismatch()
253 in_report.ReportError(error); in ReportMallocUsableSizeNotOwned()
261 in_report.ReportError(error); in ReportSanitizerGetAllocatedSizeNotOwned()
267 in_report.ReportError(error); in ReportCallocOverflow()
274 in_report.ReportError(error); in ReportReallocArrayOverflow()
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/libsanitizer/asan/
H A Dasan_report.cc189 void ReportError(const ErrorDescription &description) { in ReportError() function in __asan::ScopedInErrorReport
212 in_report.ReportError(error); in ReportDeadlySignal()
218 in_report.ReportError(error); in ReportDoubleFree()
227 in_report.ReportError(error); in ReportNewDeleteTypeMismatch()
233 in_report.ReportError(error); in ReportFreeNotMalloced()
242 in_report.ReportError(error); in ReportAllocTypeMismatch()
248 in_report.ReportError(error); in ReportMallocUsableSizeNotOwned()
256 in_report.ReportError(error); in ReportSanitizerGetAllocatedSizeNotOwned()
262 in_report.ReportError(error); in ReportCallocOverflow()
268 in_report.ReportError(error); in ReportPvallocOverflow()
[all …]
/netbsd-src/sys/external/bsd/compiler_rt/dist/lib/asan/
H A Dasan_report.cc191 void ReportError(const ErrorDescription &description) { in ReportError() function in __asan::ScopedInErrorReport
214 in_report.ReportError(error); in ReportDeadlySignal()
220 in_report.ReportError(error); in ReportDoubleFree()
229 in_report.ReportError(error); in ReportNewDeleteTypeMismatch()
235 in_report.ReportError(error); in ReportFreeNotMalloced()
244 in_report.ReportError(error); in ReportAllocTypeMismatch()
250 in_report.ReportError(error); in ReportMallocUsableSizeNotOwned()
258 in_report.ReportError(error); in ReportSanitizerGetAllocatedSizeNotOwned()
264 in_report.ReportError(error); in ReportCallocOverflow()
270 in_report.ReportError(error); in ReportPvallocOverflow()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Support/
H A DSymbolRemappingReader.cpp30 auto ReportError = [&](Twine Msg) { in read() local
46 return ReportError("Expected 'kind mangled_name mangled_name', " in read()
56 return ReportError("Invalid kind, expected 'name', 'type', or 'encoding'," in read()
65 return ReportError("Manglings '" + Parts[1] + "' and '" + Parts[2] + "' " in read()
70 return ReportError("Could not demangle '" + Parts[1] + "' " in read()
74 return ReportError("Could not demangle '" + Parts[2] + "' " in read()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/MC/
H A DMCFragment.cpp104 bool ReportError, uint64_t &Val) { in getLabelOffset() argument
106 if (ReportError) in getLabelOffset()
116 bool ReportError, uint64_t &Val) { in getSymbolOffsetImpl() argument
118 return getLabelOffset(Layout, S, ReportError, Val); in getSymbolOffsetImpl()
131 if (!getLabelOffset(Layout, A->getSymbol(), ReportError, ValA)) in getSymbolOffsetImpl()
139 if (!getLabelOffset(Layout, B->getSymbol(), ReportError, ValB)) in getSymbolOffsetImpl()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/DebugInfo/DWARF/
H A DDWARFVerifier.cpp467 auto ReportError = [&](const Twine &TitleMsg) { in verifyDebugInfoAttribute() local
484 ReportError( in verifyDebugInfoAttribute()
490 ReportError("DIE has invalid DW_AT_ranges encoding:"); in verifyDebugInfoAttribute()
496 ReportError("DW_AT_stmt_list offset is beyond .debug_line bounds: " + in verifyDebugInfoAttribute()
500 ReportError("DIE has invalid DW_AT_stmt_list encoding:"); in verifyDebugInfoAttribute()
514 ReportError("DIE contains invalid DWARF expression:"); in verifyDebugInfoAttribute()
517 ReportError(toString(Loc.takeError())); in verifyDebugInfoAttribute()
534 ReportError("DIE with tag " + TagString(DieTag) + " has " + in verifyDebugInfoAttribute()
545 ReportError("DIE has " + AttributeString(Attr) + in verifyDebugInfoAttribute()
559 ReportError("DIE has " + AttributeString(Attr) + in verifyDebugInfoAttribute()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/ExecutionEngine/Orc/
H A DOrcRPCTargetProcessControl.h284 RPCEndpointT &EP, ErrorReporter ReportError) in OrcRPCTargetProcessControlBase() argument
286 ReportError(std::move(ReportError)), EP(EP) {} in OrcRPCTargetProcessControlBase()
288 void reportError(Error Err) { ReportError(std::move(Err)); } in reportError()
408 ErrorReporter ReportError;
H A DCore.h1328 ExecutionSession &setErrorReporter(ErrorReporter ReportError) { in setErrorReporter() argument
1329 this->ReportError = std::move(ReportError); in setErrorReporter()
1336 void reportError(Error Err) { ReportError(std::move(Err)); } in reportError()
1506 ErrorReporter ReportError = logErrorsToStdErr; variable
H A DOrcRemoteTargetClient.h909 std::function<void(Error)> ReportError; variable
/netbsd-src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
H A DLLVMConventionsChecker.cpp226 void ReportError(QualType T);
247 ReportError(T); in Visit()
258 void ASTFieldVisitor::ReportError(QualType T) { in ReportError() function in ASTFieldVisitor
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-jitlink/
H A Dllvm-jitlink.h78 ErrorReporter ReportError, Error &Err) in LLVMJITLinkRemoteTargetProcessControl() argument
79 : BaseT(std::move(SSP), *Endpoint, std::move(ReportError)), in LLVMJITLinkRemoteTargetProcessControl()
H A Dllvm-jitlink.cpp659 auto ReportError = [](Error Err) { in LaunchExecutor()
667 std::move(ReportError), Err)); in LaunchExecutor()
754 auto ReportError = [](Error Err) { in ConnectToExecutor()
762 std::move(ReportError), Err)); in ConnectToExecutor()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm-c/
H A DOrc.h328 LLVMOrcExecutionSessionRef ES, LLVMOrcErrorReporterFunction ReportError,
/netbsd-src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/Orc/
H A DOrcV2CBindings.cpp238 LLVMOrcExecutionSessionRef ES, LLVMOrcErrorReporterFunction ReportError, in LLVMOrcExecutionSessionSetErrorReporter() argument
241 [=](Error Err) { ReportError(Ctx, wrap(std::move(Err))); }); in LLVMOrcExecutionSessionSetErrorReporter()