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

References

tools/lldb/source/API/SBSection.cpp
  152     return section_sp->GetByteSize();
  204             file_size = section_sp->GetByteSize();
  283                 file_addr + section_sp->GetByteSize());
tools/lldb/source/Core/Section.cpp
  255             child_section->GetByteSize() + (allow_section_end ? 1 : 0))
  275       return offset < GetByteSize();
  311   if (GetByteSize() == 0)
tools/lldb/source/Plugins/JITLoader/GDB/JITLoaderGDB.cpp
  261         uint64_t upper = lower + section_sp->GetByteSize();
  267         vmaddrheuristic += section_sp->GetByteSize();
tools/lldb/source/Plugins/ObjectFile/Mach-O/ObjectFileMachO.cpp
 1682           const lldb::addr_t curr_seg_byte_size = segment->GetByteSize();
 1791           if (curr_section_sp->GetByteSize() == 0) {
 1864               section_sp->GetByteSize());
 4328                 section_file_addr + symbol_section->GetByteSize();
 4533                   section_file_addr + symbol_section->GetByteSize();
tools/lldb/source/Plugins/Process/mach-core/ProcessMachCore.cpp
  239           section_vm_addr, section->GetByteSize(), file_range);
  270           section_vm_addr, section->GetByteSize(), permissions));
tools/lldb/source/Symbol/CompactUnwindInfo.cpp
  266           std::make_shared<DataBufferHeap>(m_section_sp->GetByteSize(), 0);
  271               m_section_sp->GetByteSize(),
  272               error) == m_section_sp->GetByteSize() &&
  283     if (m_unwindinfo_data.GetByteSize() != m_section_sp->GetByteSize())
  353       if (second_level_offset > m_section_sp->GetByteSize() ||
  354           lsda_offset > m_section_sp->GetByteSize()) {
tools/lldb/source/Symbol/ObjectFile.cpp
  524         const uint64_t section_size = section->GetByteSize();
  551             ReadMemory(process_sp, base_load_addr, section->GetByteSize()));
tools/lldb/source/Symbol/Symtab.cpp
  844         size_t size = sect_sp->GetByteSize();
tools/lldb/source/Target/SectionLoadList.cpp
   74     if (section->GetByteSize() == 0)
  221         if (offset < pos->second->GetByteSize() + (allow_section_end ? 1 : 0)) {
  236             rpos->second->GetByteSize() + (allow_section_end ? 1 : 0)) {
tools/lldb/tools/lldb-test/lldb-test.cpp
  842     Printer.formatLine("VM size: {0}", S->GetByteSize());