Lines Matching refs:shdr
1710 Elf32_Shdr shdr = {}; in TEST_F() local
1711 shdr.sh_type = SHT_NULL; in TEST_F()
1712 memory_->SetMemory(0xf7100, &shdr, sizeof(shdr)); in TEST_F()
1714 shdr.sh_type = SHT_SYMTAB; in TEST_F()
1715 shdr.sh_link = 2; in TEST_F()
1716 shdr.sh_addr = 0x300; in TEST_F()
1717 shdr.sh_offset = 0x300; in TEST_F()
1718 shdr.sh_entsize = sizeof(Elf32_Sym); in TEST_F()
1719 shdr.sh_size = shdr.sh_entsize; in TEST_F()
1720 memory_->SetMemory(0xf7100 + sizeof(shdr), &shdr, sizeof(shdr)); in TEST_F()
1722 memset(&shdr, 0, sizeof(shdr)); in TEST_F()
1723 shdr.sh_type = SHT_STRTAB; in TEST_F()
1724 shdr.sh_name = 0x500; in TEST_F()
1725 shdr.sh_offset = 0x400; in TEST_F()
1726 shdr.sh_size = 0x100; in TEST_F()
1727 memory_->SetMemory(0xf7100 + 2 * sizeof(shdr), &shdr, sizeof(shdr)); in TEST_F()