Searched refs:m_error (Results 1 - 24 of 24) sorted by relevance

/openbsd-current/gnu/llvm/lldb/source/Core/
H A DValueObjectCast.cpp63 m_error.Clear();
80 m_error = m_value.GetValueAsData(&exe_ctx, m_data, GetModule().get());
86 if (m_error.Success() && m_parent->GetError().Fail())
87 m_error = m_parent->GetError();
H A DValueObjectChild.cpp102 m_error.Clear();
152 m_error.SetErrorString("parent address is invalid.");
154 m_error.SetErrorString("parent is NULL");
195 if (m_error.Success()) {
201 m_error =
204 m_error.Clear(); // No value so nothing to read...
209 m_error.SetErrorStringWithFormat("parent failed to evaluate: %s",
213 m_error.SetErrorString("ValueObjectChild has a NULL parent ValueObject.");
216 return m_error.Success();
H A DValueObjectVariable.cpp128 m_error.Clear();
141 m_error.SetErrorString("empty constant data");
164 nullptr, m_value, &m_error)) {
189 size_t value_size = m_value.GetValueByteSize(&m_error, &exe_ctx);
190 if (m_error.Success() && value_buf_size < value_size)
200 m_error.SetErrorString("invalid value");
205 m_error =
234 m_error =
243 SetValueIsValid(m_error.Success());
250 return m_error
[all...]
H A DValueObjectMemory.cpp156 m_error.Clear();
172 m_error.SetErrorString("Invalid value");
177 m_error = m_value.GetValueAsData(&exe_ctx, m_data, GetModule().get());
216 m_error = value.GetValueAsData(&exe_ctx, m_data, GetModule().get());
221 SetValueIsValid(m_error.Success());
223 return m_error.Success();
H A DValueObjectDynamicValue.cpp113 m_error.Clear();
117 if (m_error.Success() && m_parent->GetError().Fail())
118 m_error = m_parent->GetError();
199 m_error = m_value.GetValueAsData(&exe_ctx, m_data, GetModule().get());
200 return m_error.Success();
248 m_error = m_value.GetValueAsData(&exe_ctx, m_data, GetModule().get());
249 if (m_error.Success()) {
H A DValueObjectRegister.cpp89 m_error.Clear();
111 m_error.SetErrorToGenericError();
114 return m_error.Success();
237 m_error.Clear();
264 m_error.SetErrorToGenericError();
H A DValueObjectSyntheticFilter.cpp155 m_error.Clear();
161 m_error = m_parent->GetError();
356 m_error = m_value.GetValueAsData(&exe_ctx, m_data, GetModule().get());
H A DValueObjectConstResult.cpp181 m_error = error;
194 m_error = m_value.GetValueAsData(&exe_ctx, m_data, module);
H A DValueObject.cpp131 return m_error.Success();
155 m_error.Clear();
197 m_error.SetErrorString("out of scope");
200 return m_error.Success();
286 return m_error;
1377 if (m_error.Fail()) {
1379 s.Printf("<%s>", m_error.AsCString());
2581 if (UpdateValueIfNeeded(false) && m_error.Success()) {
2590 m_error = v.GetValueAsData(&exe_ctx, data, GetModule().get());
2592 m_error
[all...]
H A DIOHandlerCursesGUI.cpp1298 bool FieldDelegateHasError() override { return !m_error.empty(); }
1307 void ClearError() { m_error.clear(); }
1309 const std::string &GetError() { return m_error; }
1311 void SetError(const char *error) { m_error = error; }
1334 std::string m_error; member in class:curses::TextFieldDelegate
2308 bool HasError() { return !m_error.empty(); }
2310 void ClearError() { m_error.clear(); }
2312 const std::string &GetError() { return m_error; }
2314 void SetError(const char *error) { m_error = error; }
2463 std::string m_error; member in class:curses::FormDelegate
[all...]
/openbsd-current/gnu/llvm/lldb/source/DataFormatters/
H A DTypeSummary.cpp61 m_error = FormatEntity::Parse(format_cstr, m_format);
64 m_error.Clear();
104 m_error.Fail() ? " error: " : "",
105 m_error.Fail() ? m_error.AsCString() : "",
H A DValueObjectPrinter.cpp65 m_error.assign("");
394 m_error.assign("out of scope");
395 if (m_error.empty()) {
396 GetValueSummaryError(m_value, m_summary, m_error);
398 if (m_error.size()) {
410 m_stream->Printf(" <%s>\n", m_error.c_str());
/openbsd-current/gnu/llvm/lldb/source/API/
H A DSBValueList.cpp31 m_error = rhs.m_error;
68 const Status &GetError() const { return m_error; }
70 void SetError(const Status &error) { m_error = error; }
74 Status m_error; member in class:ValueListImpl
/openbsd-current/gnu/llvm/lldb/source/Plugins/Language/CPlusPlus/
H A DLibCxxMap.cpp88 : m_entry(std::move(entry)), m_max_depth(depth), m_error(false) {}
90 : m_entry(std::move(entry)), m_max_depth(depth), m_error(false) {}
92 : m_entry(rhs.m_entry), m_max_depth(rhs.m_max_depth), m_error(false) {}
94 : m_entry(entry), m_max_depth(depth), m_error(false) {}
102 if (m_error)
108 if (m_error || m_entry.null() || (steps > m_max_depth))
126 m_error = true;
147 m_error = true;
169 bool m_error = false; member in class:MapIterator
/openbsd-current/gnu/llvm/lldb/source/Host/windows/
H A DConnectionGenericFileWindows.cpp31 m_error.SetError(error_code, eErrorTypeWin32);
37 m_error.SetErrorString(error_msg.data());
44 const Status &GetError() const { return m_error; }
47 Status m_error; member in class:__anon1330::ReturnInfo
/openbsd-current/gnu/llvm/lldb/source/Plugins/ObjectFile/PECOFF/
H A DPECallFrameInfo.cpp40 bool IsError() const { return m_error; }
49 bool m_error = false; member in class:UnwindCodesIterator
70 m_error = false;
81 m_error = true;
94 m_error = !m_unwind_code;
111 m_error = true;
/openbsd-current/gnu/llvm/lldb/source/Plugins/Platform/MacOSX/objcxx/
H A DPlatformiOSSimulatorCoreSimulatorSupport.h37 lldb_private::Status GetError() { return m_error; }
47 lldb_private::Status m_error; member in class:CoreSimulatorSupport::Process
/openbsd-current/gnu/llvm/lldb/include/lldb/Breakpoint/
H A DWatchpoint.h98 const Status &GetError() { return m_error; }
194 Status m_error; // An error object describing errors associated with this member in class:lldb_private::Watchpoint
/openbsd-current/gnu/llvm/lldb/source/Plugins/ExpressionParser/Clang/
H A DCxxModuleHandler.cpp104 : m_context(context), m_error(error) {}
107 std::string m_error; member in struct:MissingDeclContext
111 m_context->getDeclKindName(), m_error);
/openbsd-current/usr.sbin/smtpd/
H A Dmproc.c361 m_error(const char *error) function
384 m_error("not at msg end");
550 m_error("msg too short");
559 m_error("msg too short");
562 m_error("unterminated string");
579 m_error("msg too short");
/openbsd-current/gnu/llvm/lldb/include/lldb/DataFormatters/
H A DValueObjectPrinter.h141 std::string m_error; member in class:lldb_private::ValueObjectPrinter
H A DTypeSummary.h281 Status m_error; member in struct:lldb_private::StringSummaryFormat
/openbsd-current/gnu/llvm/lldb/include/lldb/Core/
H A DValueObject.h855 Status m_error; member in class:lldb_private::ValueObject::PrintableRepresentationSpecialCases
/openbsd-current/gnu/llvm/lldb/source/Commands/
H A DCommandObjectType.cpp1377 if (string_format->m_error.Fail()) {
1379 string_format->m_error.AsCString("<unknown>"));

Completed in 302 milliseconds