/external/google-breakpad/src/common/linux/ |
file_id_unittest.cc | 246 ELF elf2(EM_386, TypeParam::kClass, kLittleEndian); 250 elf2.AddSection(".foo", foo_2, SHT_PROGBITS); 252 elf2.AddSection(".text", text_2, SHT_PROGBITS); 253 elf2.Finish(); 254 this->GetElfContents(elf2);
|
/system/core/libunwindstack/tests/ |
JitDebugTest.cpp | 301 Elf* elf2 = jit_debug_->GetElf(maps_.get(), 0x1500); local 302 ASSERT_TRUE(elf2 != nullptr); 303 EXPECT_EQ(elf, elf2); 339 Elf* elf2 = jit_debug_->GetElf(maps_.get(), 0x1500); local 340 ASSERT_TRUE(elf2 != nullptr); 341 EXPECT_EQ(elf, elf2); 356 Elf* elf2 = jit_debug_->GetElf(maps_.get(), 0x1500); local 357 ASSERT_TRUE(elf2 != nullptr); 358 EXPECT_EQ(elf, elf2);
|
ElfCacheTest.cpp | 87 Elf* elf2 = info2.GetElf(memory_, true); local 88 ASSERT_TRUE(elf2->valid()); 91 EXPECT_EQ(elf1, elf2); 93 EXPECT_NE(elf1, elf2);
|
/external/elfutils/src/ |
elfcmp.c | 169 Elf *elf2 = open_file (fname2, &fd2, &ebl2); local 177 GElf_Ehdr *ehdr2 = gelf_getehdr (elf2, &ehdr2_mem); 214 if (unlikely (elf_getshdrnum (elf2, &shnum2) != 0)) 229 if (unlikely (elf_getphdrnum (elf2, &phnum2) != 0)) 266 scn2 = elf_nextscn (elf2, scn2); 269 sname2 = elf_strptr (elf2, ehdr2->e_shstrndx, shdr2->sh_name); 362 const char *name2 = elf_strptr (elf2, shdr2->sh_link, 582 raw2 = elf_rawfile (elf2, &size2); 606 GElf_Phdr *phdr2 = gelf_getphdr (elf2, ndx, &phdr2_mem); 657 elf_end (elf2); [all...] |
findtextrel.c | 318 Elf *elf2 = NULL; local 393 && (elf2 = elf_begin (fd2, ELF_C_READ_MMAP, NULL)) != NULL) 394 dw = dwarf_begin_elf (elf2, DWARF_C_READ, NULL); 482 elf_end (elf2);
|