Home
last modified time | relevance | path

Searched refs:GetError (Results 1 – 25 of 75) sorted by relevance

123

/freebsd/contrib/llvm-project/lldb/source/API/
H A DSBCommandReturnObject.cpp92 const char *SBCommandReturnObject::GetError() { in GetError() function in SBCommandReturnObject
140 return ::fprintf(fh, "%s", GetError()); in PutError()
149 return file_sp->Printf("%s", GetError()); in PutError()
156 return file.m_opaque_sp->Printf("%s", GetError()); in PutError()
237 strm.Printf("\nError Message:\n%s", GetError()); in GetDescription()
309 const char *SBCommandReturnObject::GetError(bool only_if_no_immediate) { in GetError() function in SBCommandReturnObject
313 return GetError(); in GetError()
H A DSBValueList.cpp68 const Status &GetError() const { return m_error; } in GetError() function in ValueListImpl
204 lldb::SBError SBValueList::GetError() { in GetError() function in SBValueList
208 sb_error.SetError(m_opaque_up->GetError()); in GetError()
H A DSBTraceCursor.cpp85 const char *SBTraceCursor::GetError() const { in GetError() function in SBTraceCursor
88 return ConstString(m_opaque_sp->GetError()).GetCString(); in GetError()
H A DSBValue.cpp118 if (value_sp->GetError().Fail()) in GetSP()
212 Status &GetError() { return m_lock_error; } in GetError() function in ValueLocker
265 SBError SBValue::GetError() { in GetError() function in SBValue
273 sb_error.SetError(value_sp->GetError()); in GetError()
276 locker.GetError().AsCString()); in GetError()
471 locker.GetError().AsCString()); in SetValueFromCString()
883 locker.GetError().AsCString()); in GetValueAsSigned()
903 locker.GetError().AsCString()); in GetValueAsUnsigned()
1081 && !m_opaque_sp->GetRootSP()->GetError().Fail()))) { in GetSP()
1082 locker.GetError().SetErrorString("No value"); in GetSP()
[all …]
H A DSBError.cpp85 uint32_t SBError::GetError() const { in GetError() function in SBError
90 err = m_opaque_up->GetError(); in GetError()
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/FreeBSDKernel/
H A DProcessFreeBSDKernel.cpp45 const char *GetError();
63 const char *GetError();
299 error.SetErrorStringWithFormat("Reading memory failed: %s", GetError()); in DoReadMemory()
305 const char *ProcessFreeBSDKernelFVC::GetError() { return fvc_geterr(m_fvc); } in GetError() function in ProcessFreeBSDKernelFVC
327 error.SetErrorStringWithFormat("Reading memory failed: %s", GetError()); in DoReadMemory()
333 const char *ProcessFreeBSDKernelKVM::GetError() { return kvm_geterr(m_kvm); } in GetError() function in ProcessFreeBSDKernelKVM
/freebsd/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectDWIMPrint.cpp157 if (valobj_sp && valobj_sp->GetError().Success()) { in DoExecute()
205 result.SetError(valobj_sp->GetError()); in DoExecute()
220 if (valobj_sp->GetError().GetError() != UserExpression::kNoResult) in DoExecute()
H A DCommandObjectExpression.cpp440 if (result_valobj_sp->GetError().Success()) { in EvaluateExpression()
481 if (result_valobj_sp->GetError().GetError() == in EvaluateExpression()
489 const char *error_cstr = result_valobj_sp->GetError().AsCString(); in EvaluateExpression()
/freebsd/contrib/llvm-project/lldb/source/Core/
H A DValueObjectCast.cpp88 if (m_error.Success() && m_parent->GetError().Fail()) in UpdateValue()
89 m_error = m_parent->GetError(); in UpdateValue()
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/Utility/
H A DRegisterContextDarwin_arm64.cpp176 return GetError(GPRRegSet, Read); in ReadGPR()
184 return GetError(FPURegSet, Read); in ReadFPU()
192 return GetError(EXCRegSet, Read); in ReadEXC()
200 return GetError(DBGRegSet, Read); in ReadDBG()
211 return GetError(GPRRegSet, Write); in WriteGPR()
222 return GetError(FPURegSet, Write); in WriteFPU()
233 return GetError(EXCRegSet, Write); in WriteEXC()
244 return GetError(DBGRegSet, Write); in WriteDBG()
H A DRegisterContextDarwin_i386.cpp507 return GetError(set, Read); in ReadGPR()
515 return GetError(set, Read); in ReadFPU()
523 return GetError(set, Read); in ReadEXC()
534 return GetError(set, Write); in WriteGPR()
545 return GetError(set, Write); in WriteFPU()
556 return GetError(set, Write); in WriteEXC()
H A DRegisterContextDarwin_arm.cpp995 return GetError(GPRRegSet, Read); in ReadGPR()
1003 return GetError(FPURegSet, Read); in ReadFPU()
1011 return GetError(EXCRegSet, Read); in ReadEXC()
1019 return GetError(DBGRegSet, Read); in ReadDBG()
1030 return GetError(GPRRegSet, Write); in WriteGPR()
1041 return GetError(FPURegSet, Write); in WriteFPU()
1052 return GetError(EXCRegSet, Write); in WriteEXC()
1063 return GetError(DBGRegSet, Write); in WriteDBG()
H A DRegisterContextDarwin_x86_64.cpp556 return GetError(GPRRegSet, Read); in ReadGPR()
564 return GetError(FPURegSet, Read); in ReadFPU()
572 return GetError(EXCRegSet, Read); in ReadEXC()
583 return GetError(set, Write); in WriteGPR()
594 return GetError(set, Write); in WriteFPU()
605 return GetError(set, Write); in WriteEXC()
H A DRegisterContextDarwin_arm64.h137 int GetError(int flavor, uint32_t err_idx) const { in GetError() function
183 bool RegisterSetIsCached(int set) const { return GetError(set, Read) == 0; } in RegisterSetIsCached()
H A DRegisterContextDarwin_i386.h126 int GetError(int flavor, uint32_t err_idx) const { in GetError() function
166 bool RegisterSetIsCached(int set) const { return GetError(set, Read) == 0; } in RegisterSetIsCached()
H A DRegisterContextDarwin_x86_64.h131 int GetError(int flavor, uint32_t err_idx) const { in GetError() function
171 bool RegisterSetIsCached(int set) const { return GetError(set, Read) == 0; } in RegisterSetIsCached()
H A DRegisterContextDarwin_arm.h170 int GetError(int flavor, uint32_t err_idx) const { in GetError() function
216 bool RegisterSetIsCached(int set) const { return GetError(set, Read) == 0; } in RegisterSetIsCached()
H A DNativeProcessSoftwareSingleStep.cpp121 if (error.GetError() == EIO || error.GetError() == EFAULT) in SetSoftwareBreakpointOnPC()
/freebsd/contrib/llvm-project/lldb/include/lldb/API/
H A DSBCommandReturnObject.h47 const char *GetError();
127 const char *GetError(bool only_if_no_immediate);
H A DSBTraceCursor.h136 const char *GetError() const;
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationServerCommon.cpp559 save_errno = error.GetError(); in Handle_vFile_Close()
589 const int save_errno = error.GetError(); in Handle_vFile_pRead()
624 const int save_errno = error.GetError(); in Handle_vFile_pWrite()
678 response.Printf("F-1,%x", (int)Status(ec).GetError()); in Handle_vFile_Mode()
718 response.Printf("F%x,%x", error.GetError(), error.GetError()); in Handle_vFile_symlink()
730 response.Printf("F%x,%x", error.GetError(), error.GetError()); in Handle_vFile_unlink()
860 response.Printf("F%x", error.GetError()); in Handle_qPlatform_mkdir()
880 response.Printf("F%x", error.GetError()); in Handle_qPlatform_chmod()
H A DGDBRemoteCommunicationServer.cpp108 packet.Printf("E%2.2x;", static_cast<uint8_t>(error.GetError())); in SendErrorResponse()
112 return SendErrorResponse(error.GetError()); in SendErrorResponse()
/freebsd/contrib/llvm-project/lldb/bindings/interface/
H A DSBErrorExtensions.i7 return self.GetError()
9 value = property(GetError, None, doc='''A read only property that returns the same result as GetError().''')
/freebsd/contrib/llvm-project/lldb/include/lldb/Utility/
H A DRegularExpression.h85 llvm::Error GetError() const;
/freebsd/contrib/llvm-project/lldb/source/Utility/
H A DRegularExpression.cpp36 llvm::Error RegularExpression::GetError() const { in GetError() function in RegularExpression

123