Home | History | Annotate | Download | only in libsa

Lines Matching refs:ehdr

89 internalize_ehdr(Elf_Byte bo, Elf_Ehdr *ehdr)
93 I16(ehdr->e_type);
94 I16(ehdr->e_machine);
95 I32(ehdr->e_version);
96 I32(ehdr->e_entry);
97 I32(ehdr->e_phoff);
98 I32(ehdr->e_shoff);
99 I32(ehdr->e_flags);
100 I16(ehdr->e_ehsize);
101 I16(ehdr->e_phentsize);
102 I16(ehdr->e_phnum);
103 I16(ehdr->e_shentsize);
104 I16(ehdr->e_shnum);
105 I16(ehdr->e_shstrndx);
107 I16(ehdr->e_type);
108 I16(ehdr->e_machine);
109 I32(ehdr->e_version);
110 I64(ehdr->e_entry);
111 I64(ehdr->e_phoff);
112 I64(ehdr->e_shoff);
113 I32(ehdr->e_flags);
114 I16(ehdr->e_ehsize);
115 I16(ehdr->e_phentsize);
116 I16(ehdr->e_phnum);
117 I16(ehdr->e_shentsize);
118 I16(ehdr->e_shnum);
119 I16(ehdr->e_shstrndx);
126 externalize_ehdr(Elf_Byte bo, Elf_Ehdr *ehdr)
130 E16(ehdr->e_type);
131 E16(ehdr->e_machine);
132 E32(ehdr->e_version);
133 E32(ehdr->e_entry);
134 E32(ehdr->e_phoff);
135 E32(ehdr->e_shoff);
136 E32(ehdr->e_flags);
137 E16(ehdr->e_ehsize);
138 E16(ehdr->e_phentsize);
139 E16(ehdr->e_phnum);
140 E16(ehdr->e_shentsize);
141 E16(ehdr->e_shnum);
142 E16(ehdr->e_shstrndx);
144 E16(ehdr->e_type);
145 E16(ehdr->e_machine);
146 E32(ehdr->e_version);
147 E64(ehdr->e_entry);
148 E64(ehdr->e_phoff);
149 E64(ehdr->e_shoff);
150 E32(ehdr->e_flags);
151 E16(ehdr->e_ehsize);
152 E16(ehdr->e_phentsize);
153 E16(ehdr->e_phnum);
154 E16(ehdr->e_shentsize);
155 E16(ehdr->e_shnum);
156 E16(ehdr->e_shstrndx);
255 #define internalize_ehdr(bo, ehdr) /* nothing */
256 #define externalize_ehdr(bo, ehdr) /* nothing */