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()
138 if (const char *s = ::mach_error_string(m_code)) in AsCString()
144 m_string = llvm::sys::StrError(m_code); in AsCString()
149 m_string = RetrieveWin32ErrorString(m_code); in AsCString()
168 m_code = 0; in Clear()
174 Status::ValueType Status::GetError() const { return m_code; } in GetError()
181 bool Status::Fail() const { return m_code != 0; } in Fail()
185 m_code = result; in SetExpressionError()
202 m_code = result; in SetExpressionErrorWithFormat()
209 m_code = err; in SetError()
216 m_code = errno; in SetErrorToErrno()
224 m_code = LLDB_GENERIC_ERROR; in SetErrorToGenericError()
279 bool Status::Success() const { return m_code == 0; } in Success()