Home | History | Annotate | Download | only in base

Lines Matching refs:address

90 PIMAGE_SECTION_HEADER PEImage::GetImageSectionFromAddr(PVOID address) const {
91 PBYTE target = reinterpret_cast<PBYTE>(address);
300 PVOID address = RVAToAddr(base->VirtualAddress + (*reloc & 0x0FFF));
302 if (!callback(*this, type, address, cookie))
382 PIMAGE_THUNK_DATA bound_iat; // address of the optional bound IAT
383 PIMAGE_THUNK_DATA unload_iat; // address of optional copy of original IAT
497 LPVOID address = RVAToAddr(rva);
498 return ImageAddrToOnDiskOffset(address, on_disk_offset);
501 bool PEImage::ImageAddrToOnDiskOffset(LPVOID address,
503 if (NULL == address)
506 // Get the section that this address belongs to.
507 PIMAGE_SECTION_HEADER section_header = GetImageSectionFromAddr(address);
515 DWORD offset_within_section = reinterpret_cast<DWORD>(address) -