Home
last modified time | relevance | path

Searched refs:GetPointeeData (Results 1 – 21 of 21) sorted by relevance

/llvm-project-15.0.7/lldb/source/Core/
H A DValueObjectConstResultCast.cpp53 size_t ValueObjectConstResultCast::GetPointeeData(DataExtractor &data, in GetPointeeData() function in ValueObjectConstResultCast
56 return m_impl.GetPointeeData(data, item_idx, item_count); in GetPointeeData()
H A DValueObjectConstResultChild.cpp65 size_t ValueObjectConstResultChild::GetPointeeData(DataExtractor &data, in GetPointeeData() function in ValueObjectConstResultChild
68 return m_impl.GetPointeeData(data, item_idx, item_count); in GetPointeeData()
H A DValueObjectConstResultImpl.cpp172 size_t ValueObjectConstResultImpl::GetPointeeData(DataExtractor &data, in GetPointeeData() function in ValueObjectConstResultImpl
177 return m_impl_backend->ValueObject::GetPointeeData(data, item_idx, in GetPointeeData()
H A DValueObjectConstResult.cpp272 size_t ValueObjectConstResult::GetPointeeData(DataExtractor &data, in GetPointeeData() function in ValueObjectConstResult
275 return m_impl.GetPointeeData(data, item_idx, item_count); in GetPointeeData()
H A DValueObject.cpp663 size_t ValueObject::GetPointeeData(DataExtractor &data, uint32_t item_idx, in GetPointeeData() function in ValueObject
935 GetPointeeData(data, 0, cstr_len); in ReadPointedString()
956 while ((bytes_read = GetPointeeData(data, offset, k_max_buf_size)) > 0) { in ReadPointedString()
/llvm-project-15.0.7/lldb/test/API/python_api/sbvalue_persist/
H A DTestSBValuePersist.py61 barPersist.GetPointeeData().sint32[0], 4,
75 barPersist.GetPointeeData().sint32[0], 4,
/llvm-project-15.0.7/lldb/test/API/commands/expression/formatters/
H A DTestFormatters.py216 a_data = frozen.GetPointeeData()
236 a_data = frozen.GetPointeeData(0, 1)
/llvm-project-15.0.7/lldb/include/lldb/Core/
H A DValueObjectConstResultCast.h51 size_t GetPointeeData(DataExtractor &data, uint32_t item_idx = 0,
H A DValueObjectConstResultImpl.h64 virtual size_t GetPointeeData(DataExtractor &data, uint32_t item_idx = 0,
H A DValueObjectConstResultChild.h60 size_t GetPointeeData(DataExtractor &data, uint32_t item_idx = 0,
H A DValueObjectConstResult.h93 size_t GetPointeeData(DataExtractor &data, uint32_t item_idx = 0,
H A DValueObject.h686 virtual size_t GetPointeeData(DataExtractor &data, uint32_t item_idx = 0,
/llvm-project-15.0.7/lldb/test/API/python_api/default-constructor/
H A Dsb_value.py61 obj.GetPointeeData(0, 1)
/llvm-project-15.0.7/lldb/bindings/interface/
H A DSBValue.i393 ") GetPointeeData;
395 GetPointeeData (uint32_t item_idx = 0,
/llvm-project-15.0.7/lldb/test/API/python_api/sbdata/
H A DTestSBData.py77 data = foobar.GetPointeeData(0, 2)
113 data = foobar.GetPointeeData(1, 1)
/llvm-project-15.0.7/lldb/include/lldb/API/
H A DSBValue.h235 lldb::SBData GetPointeeData(uint32_t item_idx = 0, uint32_t item_count = 1);
/llvm-project-15.0.7/lldb/examples/summaries/cocoa/
H A DCFBitVector.py39 return pointer.GetPointeeData(index, 1)
/llvm-project-15.0.7/llvm/utils/
H A DlldbDataFormatters.py187 data = valobj.GetChildAtIndex(0).GetPointeeData(item_count=length)
/llvm-project-15.0.7/lldb/source/Plugins/Language/CPlusPlus/
H A DLibCxx.cpp842 const size_t bytes_read = location_sp->GetPointeeData(extractor, 0, size); in LibcxxWStringSummaryProvider()
926 const size_t bytes_read = location_sp->GetPointeeData(extractor, 0, size); in LibcxxStringSummaryProvider()
/llvm-project-15.0.7/lldb/source/API/
H A DSBValue.cpp1320 lldb::SBData SBValue::GetPointeeData(uint32_t item_idx, uint32_t item_count) { in GetPointeeData() function in SBValue
1330 value_sp->GetPointeeData(*data_sp, item_idx, item_count); in GetPointeeData()
/llvm-project-15.0.7/lldb/examples/synthetic/
H A Dlibcxx.py64 data = data_ptr.GetPointeeData(0, size)