Searched refs:GetPointeeData (Results 1 - 18 of 18) sorted by relevance

/external/lldb/source/Core/
H A DValueObjectConstResultChild.cpp75 ValueObjectConstResultChild::GetPointeeData (DataExtractor& data, function in class:ValueObjectConstResultChild
79 return m_impl.GetPointeeData(data, item_idx, item_count);
H A DValueObjectConstResultImpl.cpp220 ValueObjectConstResultImpl::GetPointeeData (DataExtractor& data, function in class:ValueObjectConstResultImpl
227 return m_impl_backend->ValueObject::GetPointeeData(data, item_idx, item_count);
232 return DerefOnTarget()->GetPointeeData(data, item_idx, item_count);
234 return m_impl_backend->ValueObject::GetPointeeData(data, item_idx, item_count);
H A DValueObjectConstResult.cpp328 ValueObjectConstResult::GetPointeeData (DataExtractor& data, function in class:ValueObjectConstResult
332 return m_impl.GetPointeeData(data, item_idx, item_count);
H A DValueObject.cpp867 ValueObject::GetPointeeData (DataExtractor& data, function in class:ValueObject
1165 // I am using GetPointeeData() here to abstract the fact that some ValueObjects are actually frozen pointers in the host
1166 // but the pointed-to data lives in the debuggee, and GetPointeeData() automatically takes care of this
1167 GetPointeeData(data, 0, cstr_len);
1196 // I am using GetPointeeData() here to abstract the fact that some ValueObjects are actually frozen pointers in the host
1197 // but the pointed-to data lives in the debuggee, and GetPointeeData() automatically takes care of this
1198 while ((bytes_read = GetPointeeData(data, offset, k_max_buf_size)) > 0)
/external/lldb/include/lldb/Core/
H A DValueObjectConstResultChild.h60 GetPointeeData (DataExtractor& data,
H A DValueObjectConstResultImpl.h79 GetPointeeData (DataExtractor& data,
H A DValueObjectConstResult.h106 GetPointeeData (DataExtractor& data,
H A DValueObject.h989 GetPointeeData (DataExtractor& data,
/external/lldb/test/expression_command/formatters/
H A DTestFormatters.py138 a_data = frozen.GetPointeeData()
153 a_data = frozen.GetPointeeData(0, 1)
/external/lldb/test/python_api/default-constructor/
H A Dsb_value.py61 obj.GetPointeeData (0, 1)
/external/chromium_org/third_party/WebKit/Tools/lldb/
H A Dlldb_webkit.py99 if valobj.GetPointeeData(i, 1).GetUnsignedInt16(error, 0) == 0:
113 char_value = valobj.GetPointeeData(i, 1).GetUnsignedInt16(error, 0)
127 char_value = valobj.GetPointeeData(i, 1).GetUnsignedInt8(error, 0)
/external/clang/utils/
H A DClangDataFormat.py91 data = self.Data_value.GetPointeeData(0, self.Length)
/external/lldb/scripts/Python/interface/
H A DSBValue.i377 ") GetPointeeData;
379 GetPointeeData (uint32_t item_idx = 0,
/external/lldb/test/python_api/sbdata/
H A DTestSBData.py76 data = foobar.GetPointeeData(0, 2)
107 data = foobar.GetPointeeData(1, 1)
/external/lldb/examples/summaries/cocoa/
H A DCFBitVector.py32 return pointer.GetPointeeData(index,1)
/external/lldb/include/lldb/API/
H A DSBValue.h278 GetPointeeData (uint32_t item_idx = 0,
/external/lldb/source/API/
H A DSBValue.cpp1519 SBValue::GetPointeeData (uint32_t item_idx, function in class:SBValue
1532 value_sp->GetPointeeData(*data_sp, item_idx, item_count);
1538 log->Printf ("SBValue(%p)::GetPointeeData (%d, %d) => SBData(%p)",
/external/lldb/examples/synthetic/
H A Dlibcxx.py53 data = data_ptr.GetPointeeData(0,size)

Completed in 157 milliseconds