/external/lldb/tools/debugserver/source/MacOSX/ppc/ |
D | DNBArchImpl.cpp | 78 if (force || m_state.GetError(e_regSetGPR, Read)) in GetGPRState() 83 return m_state.GetError(e_regSetGPR, Read); in GetGPRState() 89 if (force || m_state.GetError(e_regSetFPR, Read)) in GetFPRState() 94 return m_state.GetError(e_regSetFPR, Read); in GetFPRState() 100 if (force || m_state.GetError(e_regSetEXC, Read)) in GetEXCState() 105 return m_state.GetError(e_regSetEXC, Read); in GetEXCState() 111 if (force || m_state.GetError(e_regSetVEC, Read)) in GetVECState() 116 return m_state.GetError(e_regSetVEC, Read); in GetVECState() 123 return m_state.GetError(e_regSetGPR, Write); in SetGPRState() 130 return m_state.GetError(e_regSetFPR, Write); in SetFPRState() [all …]
|
D | DNBArchImpl.h | 108 kern_return_t GetError (int set, uint32_t err_idx) const in GetError() function 159 return GetError(set, Read) == KERN_SUCCESS; in RegsAreValid()
|
/external/lldb/test/lang/objc/objc-property/ |
D | TestObjCProperty.py | 89 nonexistant_error = nonexistant_value.GetError() 103 nonexistant_error = nonexistant_change.GetError() 118 backed_error = backed_value.GetError() 125 unbacked_error = unbacked_value.GetError() 129 idWithProtocol_error = idWithProtocol_value.GetError()
|
/external/lzma/C/ |
D | Threads.c | 10 static WRes GetError() in GetError() function 16 WRes HandleToWRes(HANDLE h) { return (h != 0) ? 0 : GetError(); } in HandleToWRes() 17 WRes BOOLToWRes(BOOL v) { return v ? 0 : GetError(); } in BOOLToWRes() 23 return GetError(); in HandlePtr_Close()
|
/external/lldb/scripts/Python/interface/ |
D | SBError.i | 80 GetError () const; 107 __swig_getmethods__["value"] = GetError 108 …if _newclass: value = property(GetError, None, doc='''A read only property that returns the same r…
|
D | SBCommandReturnObject.i | 36 GetError (); 48 GetError (bool if_no_immediate);
|
D | SBValue.i | 74 GetError(); 457 __swig_getmethods__["error"] = GetError 458 …if _newclass: error = property(GetError, None, doc='''A read only property that returns the lldb.S…
|
/external/lldb/test/expression_command/call-throws/ |
D | TestCallThatThrows.py | 73 self.assertTrue (value.GetError().Success() == False) 86 self.assertTrue (value.IsValid() and value.GetError().Success() == False) 98 self.assertTrue (value.IsValid() and value.GetError().Success() == False) 106 self.assertTrue (value.IsValid() and value.GetError().Success() == False)
|
/external/lldb/test/expression_command/call-restarts/ |
D | TestCallThatRestarts.py | 90 self.assertTrue (value.GetError().Success() == True) 104 self.assertTrue (value.IsValid() and value.GetError().Success() == True) 114 self.assertTrue (value.IsValid() and value.GetError().Success() == True) 122 self.assertTrue (value.IsValid() and value.GetError().Success() == True) 133 self.assertTrue (value.IsValid() and value.GetError().Success() == False)
|
/external/lldb/source/API/ |
D | SBCommandReturnObject.cpp | 91 SBCommandReturnObject::GetError () in GetError() function in SBCommandReturnObject 145 return ::fprintf (fh, "%s", GetError()); in PutError() 259 strm.Printf ("\nError Message:\n%s", GetError()); in GetDescription() 311 SBCommandReturnObject::GetError (bool only_if_no_immediate) in GetError() function in SBCommandReturnObject 316 return GetError(); in GetError()
|
D | SBError.cpp | 100 SBError::GetError () const in GetError() function in SBError 106 err = m_opaque_ap->GetError(); in GetError()
|
D | SBValue.cpp | 232 GetError() in GetError() function in ValueLocker 289 SBValue::GetError() in GetError() function in SBValue 296 sb_error.SetError(value_sp->GetError()); in GetError() 298 sb_error.SetErrorStringWithFormat ("error: %s", locker.GetError().AsCString()); in GetError() 570 error.SetErrorStringWithFormat ("Could not get value: %s", locker.GetError().AsCString()); in SetValueFromCString() 1058 error.SetErrorStringWithFormat ("could not get SBValue: %s", locker.GetError().AsCString()); in GetValueAsSigned() 1078 error.SetErrorStringWithFormat ("could not get SBValue: %s", locker.GetError().AsCString()); in GetValueAsUnsigned() 1604 …orStringWithFormat ("Couldn't set data: could not get SBValue: %s", locker.GetError().AsCString()); in SetData() 1688 …SBValue(%p)::Watch() => error getting SBValue: %s", value_sp.get(), locker.GetError().AsCString()); in Watch() 1690 error.SetErrorStringWithFormat("could not get SBValue: %s", locker.GetError().AsCString()); in Watch()
|
/external/lldb/include/lldb/API/ |
D | SBCommandReturnObject.h | 45 GetError (); 99 GetError (bool only_if_no_immediate);
|
/external/lldb/source/Core/ |
D | ValueObjectCast.cpp | 119 if (m_error.Success() && m_parent->GetError().Fail()) in UpdateValue() 120 m_error = m_parent->GetError(); in UpdateValue()
|
D | DataBufferMemoryMap.cpp | 208 if (error.GetError() == EINVAL) in MemoryMapFromFileDescriptor() 234 if (error.GetError() == ENOMEM) in MemoryMapFromFileDescriptor()
|
D | ValueObjectSyntheticFilter.cpp | 160 if (m_parent->GetError().Fail()) in UpdateValue() 161 m_error = m_parent->GetError(); in UpdateValue()
|
/external/lldb/source/Commands/ |
D | CommandObjectExpression.cpp | 353 if (result_valobj_sp->GetError().Success()) in EvaluateExpression() 371 if (result_valobj_sp->GetError().GetError() == ClangUserExpression::kNoResult) in EvaluateExpression() 383 const char *error_cstr = result_valobj_sp->GetError().AsCString(); in EvaluateExpression()
|
/external/lldb/test/expression_command/timeout/ |
D | TestCallWithTimeout.py | 67 self.assertTrue (value.GetError().Success() == False) 81 self.assertTrue (value.GetError().Success() == True)
|
/external/lldb/tools/lldb-perf/common/clang/ |
D | lldb_perf_clang.cpp | 48 … frame.EvaluateExpression("Diags.DiagArgumentsStr[0].size()").GetError(); in __anon57ec33100302() 52 frame.EvaluateExpression("Diags.DiagArgumentsStr[0].size()").GetError(); in __anon57ec33100402() 56 … frame.EvaluateExpression("Diags.DiagArgumentsStr[0].size()").GetError(); in __anon57ec33100502()
|
/external/lldb/source/Plugins/Process/Utility/ |
D | RegisterContextDarwin_i386.cpp | 462 return GetError(set, Read); in ReadGPR() 473 return GetError(set, Read); in ReadFPU() 484 return GetError(set, Read); in ReadEXC() 498 return GetError(set, Write); in WriteGPR() 512 return GetError(set, Write); in WriteFPU() 526 return GetError(set, Write); in WriteEXC()
|
D | RegisterContextDarwin_arm.cpp | 498 return GetError(GPRRegSet, Read); in ReadGPR() 509 return GetError(FPURegSet, Read); in ReadFPU() 520 return GetError(EXCRegSet, Read); in ReadEXC() 531 return GetError(DBGRegSet, Read); in ReadDBG() 545 return GetError(GPRRegSet, Write); in WriteGPR() 559 return GetError(FPURegSet, Write); in WriteFPU() 573 return GetError(EXCRegSet, Write); in WriteEXC() 587 return GetError(DBGRegSet, Write); in WriteDBG()
|
D | RegisterContextDarwin_i386.h | 162 GetError (int flavor, uint32_t err_idx) const in GetError() function 207 return GetError(set, Read) == 0; in RegisterSetIsCached()
|
D | RegisterContextDarwin_x86_64.h | 166 GetError (int flavor, uint32_t err_idx) const in GetError() function 211 return GetError(set, Read) == 0; in RegisterSetIsCached()
|
/external/lldb/test/python_api/default-constructor/ |
D | sb_error.py | 12 obj.GetError()
|
/external/lldb/tools/debugserver/source/MacOSX/x86_64/ |
D | DNBArchImplX86_64.cpp | 156 if (force || m_state.GetError(e_regSetGPR, Read)) in GetGPRState() 192 m_state.GetError(e_regSetGPR, Read), in GetGPRState() 250 return m_state.GetError(e_regSetGPR, Read); in GetGPRState() 259 if (force || m_state.GetError(e_regSetFPU, Read)) in GetFPUState() 420 e_regSetWordSizeAVX, m_state.GetError(e_regSetFPU, Read)); in GetFPUState() 428 e_regSetWordSizeFPU, m_state.GetError(e_regSetFPU, Read)); in GetFPUState() 432 return m_state.GetError(e_regSetFPU, Read); in GetFPUState() 438 if (force || m_state.GetError(e_regSetEXC, Read)) in GetEXCState() 443 return m_state.GetError(e_regSetEXC, Read); in GetEXCState() 461 m_state.GetError(e_regSetGPR, Write), in SetGPRState() [all …]
|