Lines Matching refs:Shdr
58 void* ELi_CopySectionToBuffer( ELHandle* ElfHandle, Elf32_Shdr* Shdr) in ELi_CopySectionToBuffer() argument
67 sh_size = Shdr->sh_size; in ELi_CopySectionToBuffer()
73 (u32)(ElfHandle->elf_offset)+(u32)(Shdr->sh_offset), in ELi_CopySectionToBuffer()
88 void* ELi_AllocSectionToBuffer( ELHandle* ElfHandle, Elf32_Shdr* Shdr) in ELi_AllocSectionToBuffer() argument
97 sh_size = Shdr->sh_size; in ELi_AllocSectionToBuffer()
113 void ELi_GetShdr( ELHandle* ElfHandle, u32 index, Elf32_Shdr* Shdr) in ELi_GetShdr() argument
119 ElfHandle->ELi_ReadStub( Shdr, in ELi_GetShdr()
131 Elf32_Shdr Shdr; in ELi_GetSent() local
134 ELi_GetShdr( ElfHandle, index, &Shdr); in ELi_GetSent()
139 (u32)(ElfHandle->elf_offset) + (u32)(Shdr.sh_offset) + offset, in ELi_GetSent()
150 void ELi_GetEntry( ELHandle* ElfHandle, Elf32_Shdr* Shdr, u32 index, void* entry_buf) in ELi_GetEntry() argument
154 offset = (u32)(Shdr->sh_offset) + ((Shdr->sh_entsize) * index); in ELi_GetEntry()
160 Shdr->sh_entsize); in ELi_GetEntry()