Lines Matching refs:shdr
1703 Elf32_Shdr shdr = {}; in TEST_F() local
1704 shdr.sh_type = SHT_NULL; in TEST_F()
1705 memory_->SetMemory(0xf7100, &shdr, sizeof(shdr)); in TEST_F()
1707 shdr.sh_type = SHT_SYMTAB; in TEST_F()
1708 shdr.sh_link = 2; in TEST_F()
1709 shdr.sh_addr = 0x300; in TEST_F()
1710 shdr.sh_offset = 0x300; in TEST_F()
1711 shdr.sh_entsize = sizeof(Elf32_Sym); in TEST_F()
1712 shdr.sh_size = shdr.sh_entsize; in TEST_F()
1713 memory_->SetMemory(0xf7100 + sizeof(shdr), &shdr, sizeof(shdr)); in TEST_F()
1715 memset(&shdr, 0, sizeof(shdr)); in TEST_F()
1716 shdr.sh_type = SHT_STRTAB; in TEST_F()
1717 shdr.sh_name = 0x500; in TEST_F()
1718 shdr.sh_offset = 0x400; in TEST_F()
1719 shdr.sh_size = 0x100; in TEST_F()
1720 memory_->SetMemory(0xf7100 + 2 * sizeof(shdr), &shdr, sizeof(shdr)); in TEST_F()