Home
last modified time | relevance | path

Searched refs:deref_error (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/ValueObject/
H A DDILEval.cpp243 Status deref_error; in Visit() local
245 base->GetSyntheticValue()->Dereference(deref_error); in Visit()
246 synth_deref_sp && deref_error.Success()) { in Visit()
249 if (!base || deref_error.Fail()) { in Visit()
251 "Failed to dereference synthetic value: {0}", deref_error); in Visit()
H A DValueObject.cpp2793 std::string deref_error; in Dereference() local
2797 deref_error = llvm::toString(deref_compiler_type_or_err.takeError()); in Dereference()
2798 LLDB_LOG(GetLog(LLDBLog::Types), "could not find child: {0}", deref_error); in Dereference()
2844 if (deref_error.empty()) in Dereference()
2850 "dereference failed: %s: (%s) %s", deref_error.c_str(), in Dereference()
/freebsd/contrib/llvm-project/lldb/source/Target/
H A DStackFrame.cpp713 Status deref_error; in LegacyGetValueForVariableExpressionPath() local
715 valobj_sp->GetSyntheticValue()->Dereference(deref_error); in LegacyGetValueForVariableExpressionPath()
716 synth_deref_sp && deref_error.Success()) { in LegacyGetValueForVariableExpressionPath()
719 if (!valobj_sp || deref_error.Fail()) { in LegacyGetValueForVariableExpressionPath()
721 "Failed to dereference synthetic value: {0}", deref_error); in LegacyGetValueForVariableExpressionPath()
856 Status deref_error; in LegacyGetValueForVariableExpressionPath() local
857 ValueObjectSP temp(valobj_sp->Dereference(deref_error)); in LegacyGetValueForVariableExpressionPath()
858 if (!temp || deref_error.Fail()) { in LegacyGetValueForVariableExpressionPath()
1056 Status deref_error; in LegacyGetValueForVariableExpressionPath() local
1057 ValueObjectSP temp(valobj_sp->Dereference(deref_error)); in LegacyGetValueForVariableExpressionPath()
[all …]