Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lldb/source/Utility/
H A DStatus.cpp44 char MachKernelError::ID;
65 return llvm::make_error<MachKernelError>( in ErrorFromEnums()
169 std::string MachKernelError::message() const { in message()
184 std::unique_ptr<CloneableError> MachKernelError::Clone() const { in Clone()
185 return std::make_unique<MachKernelError>(convertToErrorCode()); in Clone()
247 lldb::ErrorType MachKernelError::GetErrorType() const { in GetErrorType()
/freebsd/contrib/llvm-project/lldb/include/lldb/Utility/
H A DStatus.h63 class MachKernelError
64 : public llvm::ErrorInfo<MachKernelError, CloneableECError> {
66 using llvm::ErrorInfo<MachKernelError, CloneableECError>::ErrorInfo;
67 MachKernelError(std::error_code ec) : ErrorInfo(ec) {} in MachKernelError() function