OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:RelShdr
(Results
1 - 2
of
2
) sorted by null
/device/linaro/bootloader/edk2/BaseTools/Source/C/GenFw/
Elf32Convert.c
623
Elf_Shdr *
RelShdr
= GetShdrByIndex(Idx);
624
if ((
RelShdr
->sh_type != SHT_REL) && (
RelShdr
->sh_type != SHT_RELA)) {
632
SecShdr = GetShdrByIndex(
RelShdr
->sh_info);
633
SecOffset = mCoffSectionsOffset[
RelShdr
->sh_info];
638
if (
RelShdr
->sh_type == SHT_REL && (*Filter)(SecShdr)) {
644
Elf_Shdr *SymtabShdr = GetShdrByIndex(
RelShdr
->sh_link);
650
for (RelOffset = 0; RelOffset <
RelShdr
->sh_size; RelOffset +=
RelShdr
->sh_entsize) {
654
Elf_Rel *Rel = (Elf_Rel *)((UINT8*)mEhdr +
RelShdr
->sh_offset + RelOffset);
[
all
...]
Elf64Convert.c
620
Elf_Shdr *
RelShdr
= GetShdrByIndex(Idx);
621
if ((
RelShdr
->sh_type != SHT_REL) && (
RelShdr
->sh_type != SHT_RELA)) {
629
SecShdr = GetShdrByIndex(
RelShdr
->sh_info);
630
SecOffset = mCoffSectionsOffset[
RelShdr
->sh_info];
635
if (
RelShdr
->sh_type == SHT_RELA && (*Filter)(SecShdr)) {
641
Elf_Shdr *SymtabShdr = GetShdrByIndex(
RelShdr
->sh_link);
647
for (RelIdx = 0; RelIdx <
RelShdr
->sh_size; RelIdx += (UINT32)
RelShdr
->sh_entsize) {
652
Elf_Rela *Rel = (Elf_Rela *)((UINT8*)mEhdr +
RelShdr
->sh_offset + RelIdx);
[
all
...]
Completed in 97 milliseconds