Lines Matching defs:RVAToAddr
110 return RVAToAddr(
119 // Don't use the virtual RVAToAddr.
121 PEImage::RVAToAddr(section->VirtualAddress));
163 RVAToAddr(exports->AddressOfFunctions));
173 PBYTE function = reinterpret_cast<PBYTE>(RVAToAddr(*export_entry));
202 PDWORD names = reinterpret_cast<PDWORD>(RVAToAddr(exports->AddressOfNames));
210 LPCSTR name = reinterpret_cast<LPCSTR>(RVAToAddr(*middle));
232 RVAToAddr(exports->AddressOfNameOrdinals));
246 PVOID section_start = RVAToAddr(section->VirtualAddress);
269 PDWORD functions = reinterpret_cast<PDWORD>(RVAToAddr(
271 PDWORD names = reinterpret_cast<PDWORD>(RVAToAddr(exports->AddressOfNames));
272 PWORD ordinals = reinterpret_cast<PWORD>(RVAToAddr(
276 PVOID func = RVAToAddr(functions[count]);
285 name = reinterpret_cast<LPCSTR>(RVAToAddr(names[hint]));
326 PVOID address = RVAToAddr(base->VirtualAddress + (*reloc & 0x0FFF));
348 LPCSTR module_name = reinterpret_cast<LPCSTR>(RVAToAddr(import->Name));
350 RVAToAddr(import->OriginalFirstThunk));
352 RVAToAddr(import->FirstThunk));
377 RVAToAddr(name_table->u1.ForwarderString));
418 RVAToAddr(delay_descriptor->rvaDLLName));
420 RVAToAddr(delay_descriptor->rvaINT));
422 RVAToAddr(delay_descriptor->rvaIAT));
424 RVAToAddr(delay_descriptor->rvaBoundIAT));
426 RVAToAddr(delay_descriptor->rvaUnloadIAT));
474 RVAToAddr(name_table->u1.ForwarderString));
523 LPVOID address = RVAToAddr(rva);
540 // Don't follow the virtual RVAToAddr, use the one on the base.
542 reinterpret_cast<DWORD>(PEImage::RVAToAddr(
550 PVOID PEImage::RVAToAddr(DWORD rva) const {
557 PVOID PEImageAsData::RVAToAddr(DWORD rva) const {
561 PVOID in_memory = PEImage::RVAToAddr(rva);
567 return PEImage::RVAToAddr(disk_offset);