Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFContext.h54 enum class ErrorPolicy { Halt, Continue }; enum
341 static ErrorPolicy defaultErrorHandler(Error E);
344 function_ref<ErrorPolicy(Error)> HandleError = defaultErrorHandler,
/freebsd-12.1/contrib/llvm/lib/DebugInfo/DWARF/
H A DDWARFContext.cpp1228 ErrorPolicy DWARFContext::defaultErrorHandler(Error E) { in defaultErrorHandler()
1230 return ErrorPolicy::Continue; in defaultErrorHandler()
1380 function_ref<ErrorPolicy(Error)> HandleError) in DWARFObjInMemory()
1409 ErrorPolicy EP = HandleError(createError( in DWARFObjInMemory()
1411 if (EP == ErrorPolicy::Halt) in DWARFObjInMemory()
1507 if (HandleError(SymInfoOrErr.takeError()) == ErrorPolicy::Halt) in DWARFObjInMemory()
1517 ErrorPolicy EP = HandleError( in DWARFObjInMemory()
1520 if (EP == ErrorPolicy::Halt) in DWARFObjInMemory()
1644 function_ref<ErrorPolicy(Error)> HandleError, in create()