| /freebsd-12-stable/contrib/llvm-project/lldb/bindings/interface/ |
| D | SBValueList.i | 97 GetValueAtIndex (uint32_t idx) const; 113 $self->GetValueAtIndex(i).GetDescription(description); in __str__() 144 return self.GetValueAtIndex(key) 151 value = self.GetValueAtIndex(idx) 161 value = self.GetValueAtIndex(idx)
|
| D | SBEnvironment.i | 34 const char *GetValueAtIndex(size_t index);
|
| /freebsd-12-stable/contrib/llvm-project/lldb/source/API/ |
| D | SBValueList.cpp | 42 lldb::SBValue GetValueAtIndex(uint32_t index) { in GetValueAtIndex() function in ValueListImpl 152 SBValue SBValueList::GetValueAtIndex(uint32_t idx) const { in GetValueAtIndex() function in SBValueList 153 LLDB_RECORD_METHOD_CONST(lldb::SBValue, SBValueList, GetValueAtIndex, in GetValueAtIndex() 159 sb_value = m_opaque_up->GetValueAtIndex(idx); in GetValueAtIndex() 221 LLDB_REGISTER_METHOD_CONST(lldb::SBValue, SBValueList, GetValueAtIndex, in RegisterMethods()
|
| D | SBEnvironment.cpp | 69 const char *SBEnvironment::GetValueAtIndex(size_t index) { in GetValueAtIndex() function in SBEnvironment 70 LLDB_RECORD_METHOD(const char *, SBEnvironment, GetValueAtIndex, (size_t), in GetValueAtIndex() 144 LLDB_REGISTER_METHOD(const char *, SBEnvironment, GetValueAtIndex, (size_t)); in RegisterMethods()
|
| /freebsd-12-stable/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/ |
| D | AppleObjCTrampolineHandler.cpp | 543 error = argument_values.GetValueAtIndex(0)->GetValueAsData(&exe_ctx, data, in RefreshTrampolines() 969 argument_values.GetValueAtIndex(obj_index)->GetScalar().ULongLong(); in GetStepThroughDispatchPlan() 986 argument_values.GetValueAtIndex(sel_index)->GetScalar().ULongLong(); in GetStepThroughDispatchPlan() 1000 Value super_value(*(argument_values.GetValueAtIndex(obj_index))); in GetStepThroughDispatchPlan() 1026 Value super_value(*(argument_values.GetValueAtIndex(obj_index))); in GetStepThroughDispatchPlan() 1049 Value isa_value(*(argument_values.GetValueAtIndex(obj_index))); in GetStepThroughDispatchPlan() 1106 dispatch_values.PushValue(*(argument_values.GetValueAtIndex(obj_index))); in GetStepThroughDispatchPlan() 1107 dispatch_values.PushValue(*(argument_values.GetValueAtIndex(sel_index))); in GetStepThroughDispatchPlan()
|
| D | AppleObjCRuntimeV2.cpp | 1810 arguments.GetValueAtIndex(0)->GetScalar() = hash_table.GetTableLoadAddress(); in UpdateISAToDescriptorMap() 1811 arguments.GetValueAtIndex(1)->GetScalar() = class_infos_addr; in UpdateISAToDescriptorMap() 1812 arguments.GetValueAtIndex(2)->GetScalar() = class_infos_byte_size; in UpdateISAToDescriptorMap() 1819 arguments.GetValueAtIndex(3)->GetScalar() = dump_log ? 1 : 0; in UpdateISAToDescriptorMap() 2037 arguments.GetValueAtIndex(0)->GetScalar() = objc_opt_ptr; in UpdateISAToDescriptorMap() 2038 arguments.GetValueAtIndex(1)->GetScalar() = shared_cache_base_addr; in UpdateISAToDescriptorMap() 2039 arguments.GetValueAtIndex(2)->GetScalar() = class_infos_addr; in UpdateISAToDescriptorMap() 2040 arguments.GetValueAtIndex(3)->GetScalar() = relative_selector_offset_addr; in UpdateISAToDescriptorMap() 2041 arguments.GetValueAtIndex(4)->GetScalar() = class_infos_byte_size; in UpdateISAToDescriptorMap() 2047 arguments.GetValueAtIndex(5)->GetScalar() = dump_log ? 1 : 0; in UpdateISAToDescriptorMap() [all …]
|
| D | AppleThreadPlanStepThroughObjCTrampoline.cpp | 91 m_input_values.GetValueAtIndex(0)->GetScalar().ULongLong(), in GetDescription()
|
| /freebsd-12-stable/contrib/llvm-project/lldb/include/lldb/API/ |
| D | SBEnvironment.h | 61 const char *GetValueAtIndex(size_t index);
|
| D | SBValueList.h | 38 lldb::SBValue GetValueAtIndex(uint32_t idx) const;
|
| /freebsd-12-stable/contrib/llvm-project/lldb/source/Plugins/Platform/POSIX/ |
| D | PlatformPOSIX.cpp | 867 arguments.GetValueAtIndex(0)->GetScalar() = path_addr; in DoLoadImage() 868 arguments.GetValueAtIndex(1)->GetScalar() = path_array_addr; in DoLoadImage() 869 arguments.GetValueAtIndex(2)->GetScalar() = buffer_addr; in DoLoadImage() 870 arguments.GetValueAtIndex(3)->GetScalar() = return_addr; in DoLoadImage()
|
| /freebsd-12-stable/contrib/llvm-project/lldb/include/lldb/Interpreter/ |
| D | OptionValueArray.h | 61 lldb::OptionValueSP GetValueAtIndex(size_t idx) const { in GetValueAtIndex() function
|
| /freebsd-12-stable/contrib/llvm-project/lldb/include/lldb/Core/ |
| D | Value.h | 171 Value *GetValueAtIndex(size_t idx);
|
| D | UniqueCStringMap.h | 54 bool GetValueAtIndex(uint32_t idx, T &value) const { in GetValueAtIndex() function
|
| /freebsd-12-stable/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ |
| D | ClangFunctionCaller.cpp | 135 m_arg_values.GetValueAtIndex(i)->GetCompilerType(); in CompileFunction()
|
| /freebsd-12-stable/contrib/llvm-project/lldb/source/Target/ |
| D | ThreadPlanTracer.cpp | 203 value_list.GetValueAtIndex(arg_index)->GetScalar().ULongLong()); in Log()
|
| /freebsd-12-stable/contrib/llvm-project/lldb/source/Expression/ |
| D | FunctionCaller.cpp | 189 Value *arg_value = arg_values.GetValueAtIndex(i); in WriteFunctionArguments()
|
| /freebsd-12-stable/contrib/llvm-project/lldb/source/Plugins/ABI/X86/ |
| D | ABIMacOSX_i386.cpp | 159 Value *value = values.GetValueAtIndex(value_index); in GetArgumentValues()
|
| D | ABISysV_i386.cpp | 177 Value *value = values.GetValueAtIndex(value_index); in GetArgumentValues()
|
| D | ABIWindows_x86_64.cpp | 270 Value *value = values.GetValueAtIndex(value_index); in GetArgumentValues()
|
| /freebsd-12-stable/contrib/llvm-project/lldb/source/Plugins/Instruction/ARM/ |
| D | EmulationStateARM.cpp | 308 value_sp = mem_array->GetValueAtIndex(i); in LoadStateFromDictionary()
|
| /freebsd-12-stable/contrib/llvm-project/lldb/source/Core/ |
| D | Value.cpp | 679 Value *ValueList::GetValueAtIndex(size_t idx) { in GetValueAtIndex() function in ValueList
|
| /freebsd-12-stable/contrib/llvm-project/lldb/source/Plugins/ABI/SystemZ/ |
| D | ABISysV_s390x.cpp | 350 Value *value = values.GetValueAtIndex(value_index); in GetArgumentValues()
|
| /freebsd-12-stable/contrib/llvm-project/lldb/source/Plugins/ABI/AArch64/ |
| D | ABISysV_arm64.cpp | 139 Value *value = values.GetValueAtIndex(value_idx); in GetArgumentValues()
|
| D | ABIMacOSX_arm64.cpp | 137 Value *value = values.GetValueAtIndex(value_idx); in GetArgumentValues()
|
| /freebsd-12-stable/contrib/llvm-project/lldb/source/Plugins/ABI/PowerPC/ |
| D | ABISysV_ppc.cpp | 389 Value *value = values.GetValueAtIndex(value_index); in GetArgumentValues()
|