Lines Matching refs:RVAPtr
989 template <typename T> class RVAPtr { class
991 RVAPtr(void *module, uptr rva) in RVAPtr() function in __interception::__anon7ac178070111::RVAPtr
1009 RVAPtr<IMAGE_DOS_HEADER> dos_stub(module, 0); in InternalGetProcAddress()
1010 RVAPtr<IMAGE_NT_HEADERS> headers(module, dos_stub->e_lfanew); in InternalGetProcAddress()
1022 RVAPtr<IMAGE_EXPORT_DIRECTORY> exports(module, in InternalGetProcAddress()
1024 RVAPtr<DWORD> functions(module, exports->AddressOfFunctions); in InternalGetProcAddress()
1025 RVAPtr<DWORD> names(module, exports->AddressOfNames); in InternalGetProcAddress()
1026 RVAPtr<WORD> ordinals(module, exports->AddressOfNameOrdinals); in InternalGetProcAddress()
1029 RVAPtr<char> name(module, names[i]); in InternalGetProcAddress()
1032 RVAPtr<char> func(module, functions[index]); in InternalGetProcAddress()
1089 RVAPtr<IMAGE_DOS_HEADER> dos_stub(module, 0); in OverrideImportedFunction()
1090 RVAPtr<IMAGE_NT_HEADERS> headers(module, dos_stub->e_lfanew); in OverrideImportedFunction()
1103 RVAPtr<IMAGE_IMPORT_DESCRIPTOR> imports(module, in OverrideImportedFunction()
1106 RVAPtr<const char> modname(module, imports->Name); in OverrideImportedFunction()
1117 RVAPtr<IMAGE_THUNK_DATA> name_table(module, imports->OriginalFirstThunk); in OverrideImportedFunction()
1118 RVAPtr<IMAGE_THUNK_DATA> iat(module, imports->FirstThunk); in OverrideImportedFunction()
1121 RVAPtr<IMAGE_IMPORT_BY_NAME> import_by_name( in OverrideImportedFunction()