Home
last modified time | relevance | path

Searched refs:pull_val (Results 1 – 4 of 4) sorted by relevance

/ndk/sources/host-tools/ndk-stack/elff/
Delf_file.h145 uint8_t pull_val(const uint8_t* val) const { in pull_val() function
148 uint8_t pull_val(const uint8_t& val) const { in pull_val() function
151 int8_t pull_val(const int8_t* val) const { in pull_val() function
154 int8_t pull_val(const int8_t& val) const { in pull_val() function
165 uint16_t pull_val(const uint16_t* val) const { in pull_val() function
175 uint16_t pull_val(const uint16_t& val) const { in pull_val() function
176 return same_endianness() ? val : pull_val(&val); in pull_val()
178 int16_t pull_val(const int16_t* val) const { in pull_val() function
180 (pull_val(reinterpret_cast<const uint16_t*>(val))); in pull_val()
182 int16_t pull_val(const int16_t& val) const { in pull_val() function
[all …]
Ddwarf_cu.cc84 elf_file_->pull_val(reinterpret_cast<const Elf_Half*>(prop)); in process_attrib()
96 elf_file_->pull_val(reinterpret_cast<const Elf_Word*>(prop)); in process_attrib()
129 elf_file_->pull_val(reinterpret_cast<const Elf_Half*>(prop)); in process_attrib()
138 elf_file_->pull_val(reinterpret_cast<const Elf_Word*>(prop)); in process_attrib()
148 elf_file_->pull_val(reinterpret_cast<const Elf_Xword*>(prop)); in process_attrib()
177 elf_file_->pull_val(reinterpret_cast<const Elf_Xword*>(prop)); 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()
197 elf_file_->pull_val(reinterpret_cast<const Elf_Xword*>(prop)); in process_attrib()
211 elf_file_->pull_val(reinterpret_cast<const Elf_Xword*>(prop)); in process_attrib()
[all …]
Delf_file.cc337 sec_count_ = pull_val(header->e_shnum); in initialize()
338 sec_entry_size_ = pull_val(header->e_shentsize); in initialize()
339 fixed_base_address_ = pull_val(header->e_entry) & ~0xFFF; in initialize()
342 const Elf_Off sec_table_off = pull_val(header->e_shoff); in initialize()
361 const Elf_Half str_sec_index = pull_val(header->e_shstrndx); in initialize()
375 if (!string_section_.map(elf_handle_, pull_val(str_sec->sh_offset), in initialize()
376 pull_val(str_sec->sh_size))) { in initialize()
448 const char* sec_name = get_str_sec_str(pull_val(cur_section->sh_name)); in get_section_info_by_name()
450 *offset = pull_val(cur_section->sh_offset); in get_section_info_by_name()
451 *size = pull_val(cur_section->sh_size); in get_section_info_by_name()
Ddwarf_cu.h453 stmtl_header_.unit_length = elf_file()->pull_val(stmtl_hdr->unit_length.size); in cache_stmtl()
454 stmtl_header_.version = elf_file()->pull_val(stmtl_hdr->version); in cache_stmtl()
455 stmtl_header_.header_length = elf_file()->pull_val(stmtl_hdr->header_length); in cache_stmtl()