Home
last modified time | relevance | path

Searched refs:section_size (Results 1 – 6 of 6) sorted by relevance

/freebsd-12.1/contrib/gdb/gdb/
H A Ddve3900-rom.c815 bfd_size_type section_size = bfd_section_size (abfd, s); in load_section() local
821 if (section_size == 0) in load_section()
824 *data_count += section_size; in load_section()
828 bfd_section_name (abfd, s), (long) section_size); in load_section()
835 write_long (&header[4], (long) section_size); in load_section()
840 buffer = (unsigned char *) xmalloc (section_size); in load_section()
841 bfd_get_section_contents (abfd, s, buffer, 0, section_size); in load_section()
842 process_read_request (buffer, section_size); in load_section()
H A Dremote-e7000.c1567 bfd_size_type section_size; in e7000_load() local
1571 section_size = bfd_get_section_size (section); in e7000_load()
1577 paddr_u (section_size)); in e7000_load()
1581 data_count += section_size; in e7000_load()
1583 while (section_size > 0) in e7000_load()
1591 count = min (section_size, WRITESIZE); in e7000_load()
1620 section_size -= count; in e7000_load()
H A Ddefs.h1215 unsigned long section_size,
H A Dsymfile.c79 unsigned long section_size,
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/ObjectFile/ELF/
H A DObjectFileELF.cpp1101 const lldb::offset_t section_size = dynsym_data.GetByteSize(); in ParseDependentModules() local
1106 while (offset < section_size) { in ParseDependentModules()
1581 const uint64_t section_size = in GetSectionHeaderInfo() local
1593 section_size) == section_size)) { in GetSectionHeaderInfo()
1657 if (sheader.sh_type == SHT_ARM_ATTRIBUTES && section_size != 0 && in GetSectionHeaderInfo()
1658 data.SetData(object_data, sheader.sh_offset, section_size) == section_size) in GetSectionHeaderInfo()
1659 ParseARMAttributes(data, section_size, arch_spec); in GetSectionHeaderInfo()
1665 section_size) == section_size)) { in GetSectionHeaderInfo()
1686 section_size) == section_size)) { in GetSectionHeaderInfo()
2444 const lldb::offset_t section_size = dynsym_data.GetByteSize(); in ParseDynamicSymbols() local
[all …]
/freebsd-12.1/contrib/llvm/tools/lldb/source/Symbol/
H A DObjectFile.cpp526 const uint64_t section_size = section->GetByteSize(); in ReadSectionData() local
527 const uint64_t section_bytes_left = section_size - section_offset; in ReadSectionData()