Searched refs:RVAPtr (Results 1 – 1 of 1) sorted by relevance
775 template <typename T> class RVAPtr { class777 RVAPtr(void *module, uptr rva) in RVAPtr() function in __interception::__anon3825d92b0111::RVAPtr795 RVAPtr<IMAGE_DOS_HEADER> dos_stub(module, 0); in InternalGetProcAddress()796 RVAPtr<IMAGE_NT_HEADERS> headers(module, dos_stub->e_lfanew); in InternalGetProcAddress()806 RVAPtr<IMAGE_EXPORT_DIRECTORY> exports(module, in InternalGetProcAddress()808 RVAPtr<DWORD> functions(module, exports->AddressOfFunctions); in InternalGetProcAddress()809 RVAPtr<DWORD> names(module, exports->AddressOfNames); in InternalGetProcAddress()810 RVAPtr<WORD> ordinals(module, exports->AddressOfNameOrdinals); in InternalGetProcAddress()813 RVAPtr<char> name(module, names[i]); in InternalGetProcAddress()816 RVAPtr<char> func(module, functions[index]); in InternalGetProcAddress()[all …]