Lines Matching refs:SBError

20 SBError::SBError() : m_opaque_up() { LLDB_RECORD_CONSTRUCTOR_NO_ARGS(SBError); }  in SBError()  function in SBError
22 SBError::SBError(const SBError &rhs) : m_opaque_up() { in SBError() function in SBError
23 LLDB_RECORD_CONSTRUCTOR(SBError, (const lldb::SBError &), rhs); in SBError()
28 SBError::~SBError() = default;
30 const SBError &SBError::operator=(const SBError &rhs) { in operator =()
31 LLDB_RECORD_METHOD(const lldb::SBError &, in operator =()
32 SBError, operator=,(const lldb::SBError &), rhs); in operator =()
39 const char *SBError::GetCString() const { in GetCString()
40 LLDB_RECORD_METHOD_CONST_NO_ARGS(const char *, SBError, GetCString); in GetCString()
47 void SBError::Clear() { in Clear()
48 LLDB_RECORD_METHOD_NO_ARGS(void, SBError, Clear); in Clear()
54 bool SBError::Fail() const { in Fail()
55 LLDB_RECORD_METHOD_CONST_NO_ARGS(bool, SBError, Fail); in Fail()
65 bool SBError::Success() const { in Success()
66 LLDB_RECORD_METHOD_CONST_NO_ARGS(bool, SBError, Success); in Success()
75 uint32_t SBError::GetError() const { in GetError()
76 LLDB_RECORD_METHOD_CONST_NO_ARGS(uint32_t, SBError, GetError); in GetError()
87 ErrorType SBError::GetType() const { in GetType()
88 LLDB_RECORD_METHOD_CONST_NO_ARGS(lldb::ErrorType, SBError, GetType); in GetType()
97 void SBError::SetError(uint32_t err, ErrorType type) { in SetError()
98 LLDB_RECORD_METHOD(void, SBError, SetError, (uint32_t, lldb::ErrorType), err, in SetError()
105 void SBError::SetError(const Status &lldb_error) { in SetError()
110 void SBError::SetErrorToErrno() { in SetErrorToErrno()
111 LLDB_RECORD_METHOD_NO_ARGS(void, SBError, SetErrorToErrno); in SetErrorToErrno()
117 void SBError::SetErrorToGenericError() { in SetErrorToGenericError()
118 LLDB_RECORD_METHOD_NO_ARGS(void, SBError, SetErrorToGenericError); in SetErrorToGenericError()
124 void SBError::SetErrorString(const char *err_str) { in SetErrorString()
125 LLDB_RECORD_METHOD(void, SBError, SetErrorString, (const char *), err_str); in SetErrorString()
131 int SBError::SetErrorStringWithFormat(const char *format, ...) { in SetErrorStringWithFormat()
140 bool SBError::IsValid() const { in IsValid()
141 LLDB_RECORD_METHOD_CONST_NO_ARGS(bool, SBError, IsValid); in IsValid()
144 SBError::operator bool() const { in operator bool()
145 LLDB_RECORD_METHOD_CONST_NO_ARGS(bool, SBError, operator bool); in operator bool()
150 void SBError::CreateIfNeeded() { in CreateIfNeeded()
155 lldb_private::Status *SBError::operator->() { return m_opaque_up.get(); } in operator ->()
157 lldb_private::Status *SBError::get() { return m_opaque_up.get(); } in get()
159 lldb_private::Status &SBError::ref() { in ref()
164 const lldb_private::Status &SBError::operator*() const { in operator *()
169 bool SBError::GetDescription(SBStream &description) { in GetDescription()
170 LLDB_RECORD_METHOD(bool, SBError, GetDescription, (lldb::SBStream &), in GetDescription()
191 void RegisterMethods<SBError>(Registry &R) { in RegisterMethods()
192 LLDB_REGISTER_CONSTRUCTOR(SBError, ()); in RegisterMethods()
193 LLDB_REGISTER_CONSTRUCTOR(SBError, (const lldb::SBError &)); in RegisterMethods()
194 LLDB_REGISTER_METHOD(const lldb::SBError &, in RegisterMethods()
195 SBError, operator=,(const lldb::SBError &)); in RegisterMethods()
196 LLDB_REGISTER_METHOD_CONST(const char *, SBError, GetCString, ()); in RegisterMethods()
197 LLDB_REGISTER_METHOD(void, SBError, Clear, ()); in RegisterMethods()
198 LLDB_REGISTER_METHOD_CONST(bool, SBError, Fail, ()); in RegisterMethods()
199 LLDB_REGISTER_METHOD_CONST(bool, SBError, Success, ()); in RegisterMethods()
200 LLDB_REGISTER_METHOD_CONST(uint32_t, SBError, GetError, ()); in RegisterMethods()
201 LLDB_REGISTER_METHOD_CONST(lldb::ErrorType, SBError, GetType, ()); in RegisterMethods()
202 LLDB_REGISTER_METHOD(void, SBError, SetError, (uint32_t, lldb::ErrorType)); in RegisterMethods()
203 LLDB_REGISTER_METHOD(void, SBError, SetErrorToErrno, ()); in RegisterMethods()
204 LLDB_REGISTER_METHOD(void, SBError, SetErrorToGenericError, ()); in RegisterMethods()
205 LLDB_REGISTER_METHOD(void, SBError, SetErrorString, (const char *)); in RegisterMethods()
206 LLDB_REGISTER_METHOD_CONST(bool, SBError, IsValid, ()); in RegisterMethods()
207 LLDB_REGISTER_METHOD_CONST(bool, SBError, operator bool, ()); in RegisterMethods()
208 LLDB_REGISTER_METHOD(bool, SBError, GetDescription, (lldb::SBStream &)); in RegisterMethods()