Searched defs:GetPointeeData (Results 1 - 5 of 5) 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/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)",

Completed in 155 milliseconds