Lines Matching refs:m_code
43 : m_code(err), m_type(type), m_string() {} in Status()
49 : m_code(EC.value()), in Status()
73 m_code = ec.value(); in operator =()
94 std::error_code(m_code, std::generic_category())); in ToError()
137 if (const char *s = ::mach_error_string(m_code)) in AsCString()
143 m_string = llvm::sys::StrError(m_code); in AsCString()
148 m_string = RetrieveWin32ErrorString(m_code); in AsCString()
167 m_code = 0; in Clear()
173 Status::ValueType Status::GetError() const { return m_code; } in GetError()
180 bool Status::Fail() const { return m_code != 0; } in Fail()
184 m_code = result; in SetExpressionError()
201 m_code = result; in SetExpressionErrorWithFormat()
208 m_code = err; in SetError()
215 m_code = errno; in SetErrorToErrno()
223 m_code = LLDB_GENERIC_ERROR; in SetErrorToGenericError()
278 bool Status::Success() const { return m_code == 0; } in Success()