reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

Overridden By

tools/lldb/include/lldb/Core/ValueObjectChild.h
   33   uint64_t GetByteSize() override { return m_byte_size; }
tools/lldb/include/lldb/Target/StackFrameRecognizer.h
  140   uint64_t GetByteSize() override { return m_parent->GetByteSize(); }
tools/lldb/source/Core/ValueObjectCast.cpp
   52 uint64_t ValueObjectCast::GetByteSize() {
tools/lldb/source/Core/ValueObjectConstResult.cpp
  198 uint64_t ValueObjectConstResult::GetByteSize() {
tools/lldb/source/Core/ValueObjectDynamicValue.cpp
  101 uint64_t ValueObjectDynamicValue::GetByteSize() {
tools/lldb/source/Core/ValueObjectMemory.cpp
  137 uint64_t ValueObjectMemory::GetByteSize() {
tools/lldb/source/Core/ValueObjectRegister.cpp
   69 uint64_t ValueObjectRegisterContext::GetByteSize() { return 0; }
  146 uint64_t ValueObjectRegisterSet::GetByteSize() { return 0; }
  291 uint64_t ValueObjectRegister::GetByteSize() { return m_reg_info.byte_size; }
tools/lldb/source/Core/ValueObjectSyntheticFilter.cpp
  122 uint64_t ValueObjectSynthetic::GetByteSize() { return m_parent->GetByteSize(); }
tools/lldb/source/Core/ValueObjectVariable.cpp
  106 uint64_t ValueObjectVariable::GetByteSize() {

References

tools/lldb/include/lldb/Expression/ExpressionVariable.h
   35   size_t GetByteSize() { return m_frozen_sp->GetByteSize(); }
tools/lldb/include/lldb/Target/StackFrameRecognizer.h
  140   uint64_t GetByteSize() override { return m_parent->GetByteSize(); }
tools/lldb/source/API/SBValue.cpp
  336     result = value_sp->GetByteSize();
tools/lldb/source/Commands/CommandObjectWatchpoint.cpp
  865                    ? valobj_sp->GetByteSize()
tools/lldb/source/Core/ValueObject.cpp
  893   const size_t byte_size = GetByteSize();
 1583   const size_t byte_size = GetByteSize();
 1800             GetByteSize() * 8 - bit_field_size - bit_field_offset;
 1804           *this, GetCompilerType(), index_const_str, GetByteSize(), 0,
tools/lldb/source/Core/ValueObjectDynamicValue.cpp
  107     return m_parent->GetByteSize();
tools/lldb/source/Core/ValueObjectSyntheticFilter.cpp
  122 uint64_t ValueObjectSynthetic::GetByteSize() { return m_parent->GetByteSize(); }
tools/lldb/source/Expression/ExpressionVariable.cpp
   19   const size_t byte_size = m_frozen_sp->GetByteSize();
tools/lldb/source/Expression/Materializer.cpp
  623       map.GetMemoryData(data, m_temporary_allocation, valobj_sp->GetByteSize(),
tools/lldb/source/Target/StackFrame.cpp
 1401   if (offset < 0 || uint64_t(offset) >= parent->GetByteSize()) {
 1418     int64_t child_size = child_sp->GetByteSize();
 1450   if (offset >= 0 && uint64_t(offset) >= pointee->GetByteSize()) {
 1451     int64_t index = offset / pointee->GetByteSize();
 1452     offset = offset % pointee->GetByteSize();