Searched refs:nt_header (Results 1 - 6 of 6) sorted by relevance

/macosx-10.9.5/emacs-92/emacs/nt/
H A Daddsection.c150 find_section (char * name, IMAGE_NT_HEADERS * nt_header) argument
155 section = IMAGE_FIRST_SECTION (nt_header);
157 for (i = 0; i < nt_header->FileHeader.NumberOfSections; i++)
169 rva_to_section (DWORD rva, IMAGE_NT_HEADERS * nt_header) argument
174 section = IMAGE_FIRST_SECTION (nt_header);
176 for (i = 0; i < nt_header->FileHeader.NumberOfSections; i++)
197 offset_to_section (DWORD offset, IMAGE_NT_HEADERS * nt_header) argument
202 section = IMAGE_FIRST_SECTION (nt_header);
204 for (i = 0; i < nt_header->FileHeader.NumberOfSections; i++)
281 PIMAGE_NT_HEADERS nt_header; local
472 PIMAGE_NT_HEADERS nt_header; local
[all...]
H A Dpreprep.c182 find_section (char * name, IMAGE_NT_HEADERS * nt_header) argument
187 section = IMAGE_FIRST_SECTION (nt_header);
189 for (i = 0; i < nt_header->FileHeader.NumberOfSections; i++)
201 rva_to_section (DWORD rva, IMAGE_NT_HEADERS * nt_header) argument
206 section = IMAGE_FIRST_SECTION (nt_header);
208 for (i = 0; i < nt_header->FileHeader.NumberOfSections; i++)
229 offset_to_section (DWORD offset, IMAGE_NT_HEADERS * nt_header) argument
234 section = IMAGE_FIRST_SECTION (nt_header);
236 for (i = 0; i < nt_header->FileHeader.NumberOfSections; i++)
350 PIMAGE_NT_HEADERS nt_header; local
767 PIMAGE_NT_HEADERS nt_header; local
[all...]
/macosx-10.9.5/emacs-92/emacs/src/
H A Dunexw32.c216 find_section (char * name, IMAGE_NT_HEADERS * nt_header) argument
221 section = IMAGE_FIRST_SECTION (nt_header);
223 for (i = 0; i < nt_header->FileHeader.NumberOfSections; i++)
235 rva_to_section (DWORD rva, IMAGE_NT_HEADERS * nt_header) argument
240 section = IMAGE_FIRST_SECTION (nt_header);
242 for (i = 0; i < nt_header->FileHeader.NumberOfSections; i++)
263 offset_to_section (DWORD offset, IMAGE_NT_HEADERS * nt_header) argument
268 section = IMAGE_FIRST_SECTION (nt_header);
270 for (i = 0; i < nt_header->FileHeader.NumberOfSections; i++)
344 PIMAGE_NT_HEADERS nt_header; local
489 PIMAGE_NT_HEADERS nt_header; local
797 PIMAGE_NT_HEADERS nt_header; local
[all...]
H A Dw32heap.h91 IMAGE_SECTION_HEADER * find_section (char * name, IMAGE_NT_HEADERS * nt_header);
95 IMAGE_SECTION_HEADER * rva_to_section (DWORD rva, IMAGE_NT_HEADERS * nt_header);
H A Dw32heap.c228 PIMAGE_NT_HEADERS nt_header; local
231 nt_header = (PIMAGE_NT_HEADERS) (((unsigned long) dos_header) +
233 preload_heap_section = find_section ("EMHEAP", nt_header);
H A Dw32proc.c633 IMAGE_NT_HEADERS * nt_header; local
639 nt_header = (PIMAGE_NT_HEADERS) ((char *) dos_header + dos_header->e_lfanew);
641 if ((char *) nt_header > (char *) dos_header + executable.size)
646 else if (nt_header->Signature != IMAGE_NT_SIGNATURE
647 && LOWORD (nt_header->Signature) != IMAGE_OS2_SIGNATURE)
651 else if (nt_header->Signature == IMAGE_NT_SIGNATURE)
655 nt_header->OptionalHeader.DataDirectory[IMAGE_DIRECTORY_ENTRY_IMPORT];
659 section = rva_to_section (import_dir.VirtualAddress, nt_header);
679 *is_gui_app = (nt_header->OptionalHeader.Subsystem == IMAGE_SUBSYSTEM_WINDOWS_GUI);

Completed in 202 milliseconds