Lines Matching refs:SBError
20 SBError::SBError() { LLDB_INSTRUMENT_VA(this); } in SBError() function in SBError
22 SBError::SBError(const SBError &rhs) { in SBError() function in SBError
28 SBError::SBError(const char *message) { in SBError() function in SBError
34 SBError::SBError(const lldb_private::Status &status) in SBError() function in SBError
39 SBError::~SBError() = default;
41 const SBError &SBError::operator=(const SBError &rhs) { in operator =()
49 const char *SBError::GetCString() const { in GetCString()
57 void SBError::Clear() { in Clear()
64 bool SBError::Fail() const { in Fail()
75 bool SBError::Success() const { in Success()
85 uint32_t SBError::GetError() const { in GetError()
96 ErrorType SBError::GetType() const { in GetType()
106 void SBError::SetError(uint32_t err, ErrorType type) { in SetError()
113 void SBError::SetError(const Status &lldb_error) { in SetError()
118 void SBError::SetErrorToErrno() { in SetErrorToErrno()
125 void SBError::SetErrorToGenericError() { in SetErrorToGenericError()
132 void SBError::SetErrorString(const char *err_str) { in SetErrorString()
139 int SBError::SetErrorStringWithFormat(const char *format, ...) { in SetErrorStringWithFormat()
148 bool SBError::IsValid() const { in IsValid()
152 SBError::operator bool() const { in operator bool()
158 void SBError::CreateIfNeeded() { in CreateIfNeeded()
163 lldb_private::Status *SBError::operator->() { return m_opaque_up.get(); } in operator ->()
165 lldb_private::Status *SBError::get() { return m_opaque_up.get(); } in get()
167 lldb_private::Status &SBError::ref() { in ref()
172 const lldb_private::Status &SBError::operator*() const { in operator *()
177 bool SBError::GetDescription(SBStream &description) { in GetDescription()