Lines Matching refs:all
1602 ElfFile& all = *all_ptr; in GdbJITSupport() local
1605 const Elf32_Shdr* debug_info = all.FindSectionByName(".debug_info"); in GdbJITSupport()
1606 const Elf32_Shdr* debug_abbrev = all.FindSectionByName(".debug_abbrev"); in GdbJITSupport()
1607 const Elf32_Shdr* eh_frame = all.FindSectionByName(".eh_frame"); in GdbJITSupport()
1608 const Elf32_Shdr* debug_str = all.FindSectionByName(".debug_str"); in GdbJITSupport()
1609 const Elf32_Shdr* strtab_sec = all.FindSectionByName(".strtab"); in GdbJITSupport()
1610 const Elf32_Shdr* symtab_sec = all.FindSectionByName(".symtab"); in GdbJITSupport()
1611 Elf32_Shdr* text_sec = all.FindSectionByName(".text"); in GdbJITSupport()
1620 Elf32_Ehdr& elf_hdr = all.GetHeader(); in GdbJITSupport()
1631 all.Begin() + debug_abbrev->sh_offset, debug_abbrev->sh_size, text_sec->sh_addr, in GdbJITSupport()
1632 all.Begin() + debug_info->sh_offset, debug_info->sh_size, in GdbJITSupport()
1633 all.Begin() + eh_frame->sh_offset, eh_frame->sh_size)) { in GdbJITSupport()
1638 jit_gdb_entry_ = CreateCodeEntry(all.Begin(), all.Size()); in GdbJITSupport()