Home
last modified time | relevance | path

Searched refs:Elf_Word (Results 1 – 12 of 12) sorted by relevance

/external/qemu/elff/
Delff_elf.h47 typedef uint32_t Elf_Word; typedef
105 Elf_Word e_version;
163 Elf_Word e_flags;
207 Elf_Word sh_name;
210 Elf_Word sh_type;
213 Elf_Word sh_flags;
224 Elf_Word sh_size;
227 Elf_Word sh_link;
230 Elf_Word sh_info;
235 Elf_Word sh_addralign;
[all …]
Ddwarf_cu.h36 Elf_Word line_number;
83 Elf_Word inc_dir_num;
252 virtual DIEObject* get_referenced_die_object(Elf_Word ref) const = 0;
257 virtual Elf_Word get_die_reference(const Dwarf_DIE* die) const = 0;
279 virtual const Dwarf_STMTL_FileDesc* get_stmt_file_info(Elf_Word index) = 0;
292 virtual const char* get_stmt_dir_name(Elf_Word dir_index) = 0;
360 const Dwarf_STMTL_FileDesc* get_stmt_file_info(Elf_Word index);
367 const char* get_stmt_dir_name(Elf_Word dir_index);
372 DIEObject* get_referenced_die_object(Elf_Word ref) const { in get_referenced_die_object()
381 Elf_Word get_die_reference(const Dwarf_DIE* die) const { in get_die_reference()
[all …]
Ddwarf_cu.cc41 if (*reinterpret_cast<const Elf_Word*>(hdr) == 0xFFFFFFFF) { in create_instance()
75 static_cast<Elf_Word>(attr_value->block.block_size + 1); in process_attrib()
87 static_cast<Elf_Word>(attr_value->block.block_size + 2); in process_attrib()
96 elf_file_->pull_val(reinterpret_cast<const Elf_Word*>(prop)); in process_attrib()
99 static_cast<Elf_Word>(attr_value->block.block_size + 4); in process_attrib()
111 static_cast<Elf_Word>(attr_value->block.block_size + in process_attrib()
138 elf_file_->pull_val(reinterpret_cast<const Elf_Word*>(prop)); in process_attrib()
181 Elf_Word str_offset = in process_attrib()
182 elf_file_->pull_val(reinterpret_cast<const Elf_Word*>(prop)); in process_attrib()
193 elf_file_->pull_val(reinterpret_cast<const Elf_Word*>(prop)); in process_attrib()
[all …]
Ddwarf_defs.h100 Elf_Word block_size;
115 Elf_Word u32;
119 Elf_Word ptr32;
133 Elf_Word encoded_size;
199 Elf_Word shift = 0; in get_common()
472 Elf_Word size;
478 Elf_Word size_selector;
508 typedef Dwarf_CUHdr<Dwarf32_SizeHdr, Elf_Word> Dwarf32_CUHdr;
563 typedef Dwarf_STMTLHdr<Dwarf32_SizeHdr, Elf_Word> Dwarf32_STMTLHdr;
595 const Dwarf_STMTL_FileDesc* process(Elf_Word* dir_index) const { in process()
[all …]
Delf_mapped_section.h49 bool map(MapFile* handle, Elf_Xword offset, Elf_Word size);
63 Elf_Word size() const { in size()
86 Elf_Word size_;
Ddwarf_die.cc102 contains_address<Elf_Word>(address); in get_leaf_for_address()
139 Elf_Word range_off = die_ranges.value()->u32; in contains_address()
210 Elf_Word off = attr.value()->u32; in dump()
220 Elf_Word low, high; in dump()
221 while (elf_file()->get_range<Elf_Word>(off, &low, &high) && in dump()
Delf_mapped_section.cc35 Elf_Word size) { in map()
45 size_ = (Elf_Word)mapped_bytes; in map()
Ddwarf_utils.cc248 printf("BYTE) = %u (x%02X)\n", (Elf_Word)attr_value->u8, in dump_value()
249 (Elf_Word)attr_value->u8); in dump_value()
258 printf("WORD) = %u (x%04X)\n", (Elf_Word)attr_value->u16, in dump_value()
259 (Elf_Word)attr_value->u16); in dump_value()
Delf_file.cc391 *reinterpret_cast<const Elf_Word*>(debug_info_.data()) == 0xFFFFFFFF; in initialize()
443 Elf_Word* size) { in get_section_info_by_name()
470 Elf_Word size; in map_section_by_name()
Ddwarf_die.h178 Elf_Word get_level() const { in get_level()
Delf_file.h478 bool get_range(Elf_Word offset, AddrType* low, AddrType* high) { in get_range()
609 Elf_Word* size);
/external/llvm/lib/Object/
DELFObjectFile.cpp35 <uint32_t, target_endianness, support::aligned> Elf_Word; typedef
79 ELFDataTypeTypedefHelper<target_endianness, is64Bits>::Elf_Word Elf_Word; \
95 Elf_Word sh_name; // Section name (index into string table)
96 Elf_Word sh_type; // Section type (SHT_*)
97 Elf_Word sh_flags; // Section flags (SHF_*)
100 Elf_Word sh_size; // Size of section, in bytes
101 Elf_Word sh_link; // Section type-specific header table index link
102 Elf_Word sh_info; // Section type-specific extra information
103 Elf_Word sh_addralign;// Section address alignment
104 Elf_Word sh_entsize; // Size of records contained within the section
[all …]