Lines Matching refs:SBError
20 SBError::SBError() : m_opaque_ap() {} in SBError() function in SBError
22 SBError::SBError(const SBError &rhs) : m_opaque_ap() { in SBError() function in SBError
27 SBError::~SBError() {} in ~SBError()
29 const SBError &SBError::operator=(const SBError &rhs) { in operator =()
41 const char *SBError::GetCString() const { in GetCString()
47 void SBError::Clear() { in Clear()
52 bool SBError::Fail() const { in Fail()
66 bool SBError::Success() const { in Success()
79 uint32_t SBError::GetError() const { in GetError()
93 ErrorType SBError::GetType() const { in GetType()
106 void SBError::SetError(uint32_t err, ErrorType type) { in SetError()
111 void SBError::SetError(const Status &lldb_error) { in SetError()
116 void SBError::SetErrorToErrno() { in SetErrorToErrno()
121 void SBError::SetErrorToGenericError() { in SetErrorToGenericError()
126 void SBError::SetErrorString(const char *err_str) { in SetErrorString()
131 int SBError::SetErrorStringWithFormat(const char *format, ...) { in SetErrorStringWithFormat()
140 bool SBError::IsValid() const { return m_opaque_ap != NULL; } in IsValid()
142 void SBError::CreateIfNeeded() { in CreateIfNeeded()
147 lldb_private::Status *SBError::operator->() { return m_opaque_ap.get(); } in operator ->()
149 lldb_private::Status *SBError::get() { return m_opaque_ap.get(); } in get()
151 lldb_private::Status &SBError::ref() { in ref()
156 const lldb_private::Status &SBError::operator*() const { in operator *()
161 bool SBError::GetDescription(SBStream &description) { in GetDescription()