reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/lldb/source/Core/ValueObject.cpp
  207     return m_error.Success();
  231       m_error.Clear();
  273       m_error.SetErrorString("out of scope");
  276   return m_error.Success();
  367   return m_error;
 1476       if (m_error.Fail()) {
 1478           s.Printf("<%s>", m_error.AsCString());
 2763   if (UpdateValueIfNeeded(false) && m_error.Success()) {
 2772       m_error = v.GetValueAsData(&exe_ctx, data, GetModule().get());
 2774       m_error = m_value.GetValueAsData(&exe_ctx, data, GetModule().get());
 2784         exe_ctx.GetBestExecutionContextScope(), m_error);
tools/lldb/source/Core/ValueObjectCast.cpp
   64   m_error.Clear();
   82     m_error = m_value.GetValueAsData(&exe_ctx, m_data, GetModule().get());
   88   if (m_error.Success() && m_parent->GetError().Fail())
   89     m_error = m_parent->GetError();
tools/lldb/source/Core/ValueObjectChild.cpp
  111   m_error.Clear();
  134           m_error.SetErrorString("parent address is invalid.");
  136           m_error.SetErrorString("parent is NULL");
  171             m_error.SetErrorString("parent address is invalid.");
  173             m_error.SetErrorString("parent is NULL");
  218           m_error.SetErrorString("parent has invalid value.");
  223       if (m_error.Success()) {
  229           m_error =
  232           m_error.Clear(); // No value so nothing to read...
  237       m_error.SetErrorStringWithFormat("parent failed to evaluate: %s",
  241     m_error.SetErrorString("ValueObjectChild has a NULL parent ValueObject.");
  244   return m_error.Success();
tools/lldb/source/Core/ValueObjectConstResult.cpp
  172   m_error = error;
  185   m_error = m_value.GetValueAsData(&exe_ctx, m_data, module);
tools/lldb/source/Core/ValueObjectDynamicValue.cpp
  116   m_error.Clear();
  120     if (m_error.Success() && m_parent->GetError().Fail())
  121       m_error = m_parent->GetError();
  202     m_error = m_value.GetValueAsData(&exe_ctx, m_data, GetModule().get());
  203     return m_error.Success();
  252     m_error = m_value.GetValueAsData(&exe_ctx, m_data, GetModule().get());
  253     if (m_error.Success()) {
tools/lldb/source/Core/ValueObjectMemory.cpp
  150   m_error.Clear();
  171       m_error = m_value.GetValueAsData(&exe_ctx, m_data, GetModule().get());
  212         m_error = value.GetValueAsData(&exe_ctx, m_data, GetModule().get());
  217     SetValueIsValid(m_error.Success());
  219   return m_error.Success();
tools/lldb/source/Core/ValueObjectRegister.cpp
   72   m_error.Clear();
   82     m_error.SetErrorToGenericError();
   86   return m_error.Success();
  149   m_error.Clear();
  171     m_error.SetErrorToGenericError();
  174   return m_error.Success();
  294   m_error.Clear();
  321   m_error.SetErrorToGenericError();
tools/lldb/source/Core/ValueObjectSyntheticFilter.cpp
  150   m_error.Clear();
  156       m_error = m_parent->GetError();
  323   m_error = m_value.GetValueAsData(&exe_ctx, m_data, GetModule().get());
tools/lldb/source/Core/ValueObjectVariable.cpp
  125   m_error.Clear();
  136       m_error.SetErrorString("empty constant data");
  159                       nullptr, m_value, &m_error)) {
  178         m_error =
  207           m_error =
  216       SetValueIsValid(m_error.Success());
  222   return m_error.Success();