Home
last modified time | relevance | path

Searched refs:symtab_hdr (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/Plugins/ObjectFile/ELF/
H A DObjectFileELF.cpp2410 const ELFSectionHeaderInfo *symtab_hdr = GetSectionHeaderByIndex(symtab_id); in ParseSymbolTable() local
2411 assert(symtab_hdr->sh_type == SHT_SYMTAB || in ParseSymbolTable()
2412 symtab_hdr->sh_type == SHT_DYNSYM); in ParseSymbolTable()
2415 user_id_t strtab_id = symtab_hdr->sh_link; in ParseSymbolTable()
2426 size_t num_symbols = symtab_data.GetByteSize() / symtab_hdr->sh_entsize; in ParseSymbolTable()
2755 const ELFSectionHeader *symtab_hdr, const ELFSectionHeader *debug_hdr, in ApplyRelocations() argument
2907 const ELFSectionHeader *symtab_hdr = GetSectionHeaderByIndex(symtab_id); in RelocateDebugSections() local
2908 if (!symtab_hdr) in RelocateDebugSections()
2934 ApplyRelocations(thetab, &m_header, rel_hdr, symtab_hdr, debug_hdr, in RelocateDebugSections()
H A DObjectFileELF.h332 const elf::ELFSectionHeader *symtab_hdr,