Lines Matching refs:byte
45 const byte *symfile_addr_;
70 static JITCodeEntry* CreateCodeEntry(const byte *symfile_addr, in CreateCodeEntry()
237 reinterpret_cast<byte**>(&dynamic_section_start_), error_msg)) { in Setup()
252 reinterpret_cast<byte**>(&symtab_section_start_), error_msg)) { in Setup()
259 reinterpret_cast<byte**>(&dynsym_section_start_), error_msg)) { in Setup()
271 reinterpret_cast<byte**>(&dynstr_section_start_), error_msg)) { in Setup()
280 reinterpret_cast<byte**>(&strtab_section_start_), error_msg)) { in Setup()
288 if (reinterpret_cast<byte*>(dynamic_section_start_) != in Setup()
300 reinterpret_cast<byte**>(&hash_section_start_), error_msg)) { in Setup()
328 byte** target, std::string* error_msg) { in CheckAndSet()
338 bool ElfFile::CheckSectionsLinked(const byte* source, const byte* target) const { in CheckSectionsLinked()
402 if (!CheckSectionsLinked(reinterpret_cast<const byte*>(symtab_section_start_), in CheckSectionsExist()
403 reinterpret_cast<const byte*>(strtab_section_start_))) { in CheckSectionsExist()
428 if (!CheckSectionsLinked(reinterpret_cast<const byte*>(hash_section_start_), in CheckSectionsExist()
429 reinterpret_cast<const byte*>(dynsym_section_start_))) { in CheckSectionsExist()
591 byte* ElfFile::GetProgramHeadersStart() const { in GetProgramHeadersStart()
597 byte* ElfFile::GetSectionHeadersStart() const { in GetSectionHeadersStart()
704 byte* program_header = GetProgramHeadersStart() + (i * GetHeader().e_phentsize); in GetProgramHeader()
732 byte* section_header = GetSectionHeadersStart() + (i * GetHeader().e_shentsize); in GetSectionHeader()
770 const byte* ElfFile::FindDynamicSymbolAddress(const std::string& symbol_name) const { in FindDynamicSymbolAddress()
948 byte* strings = Begin() + string_section.sh_offset; in GetString()
949 byte* string = strings + i; in GetString()
1149 byte* p_vaddr = base_address_ + program_header->p_vaddr; in Load()
1196 byte* dsptr = base_address_ + GetDynamicProgramHeader().p_vaddr; in Load()
1206 byte* d_ptr = base_address_ + elf_dyn.d_un.d_ptr; in Load()
1260 bool ElfFile::ValidPointer(const byte* start) const { in ValidPointer()
1305 byte* fde_bytes = reinterpret_cast<byte*>(frame); in NextFDE()
1315 static bool FixupEHFrame(uintptr_t text_start, byte* eh_frame, size_t eh_frame_size) { in FixupEHFrame()
1381 static DebugTag* Create(const byte** data_pointer) { in Create()
1382 const byte* data = *data_pointer; in Create()
1461 static DebugAbbrev* Create(const byte* dbg_abbrev, size_t dbg_abbrev_size) { in Create()
1463 const byte* last = dbg_abbrev + dbg_abbrev_size; in Create()
1476 DebugTag* ReadTag(const byte* entry) { in ReadTag()
1529 byte* GetPointerToField(uint8_t dwarf_field) { in GetPointerToField()
1546 last_entry_(reinterpret_cast<byte*>(header) + frame_size), in DebugInfoIterator()
1547 current_entry_(reinterpret_cast<byte*>(header) + sizeof(DebugInfoHeader)), in DebugInfoIterator()
1550 byte* last_entry_;
1551 byte* current_entry_;
1571 static bool FixupDebugSections(const byte* dbg_abbrev, size_t dbg_abbrev_size, in FixupDebugSections()
1573 byte* dbg_info, size_t dbg_info_size, in FixupDebugSections()
1574 byte* eh_frame, size_t eh_frame_size) { in FixupDebugSections()