Lines Matching refs:RVAPtr
913 template <typename T> class RVAPtr { class
915 RVAPtr(void *module, uptr rva) in RVAPtr() function in __interception::__anonf7bb67370111::RVAPtr
933 RVAPtr<IMAGE_DOS_HEADER> dos_stub(module, 0); in InternalGetProcAddress()
934 RVAPtr<IMAGE_NT_HEADERS> headers(module, dos_stub->e_lfanew); in InternalGetProcAddress()
946 RVAPtr<IMAGE_EXPORT_DIRECTORY> exports(module, in InternalGetProcAddress()
948 RVAPtr<DWORD> functions(module, exports->AddressOfFunctions); in InternalGetProcAddress()
949 RVAPtr<DWORD> names(module, exports->AddressOfNames); in InternalGetProcAddress()
950 RVAPtr<WORD> ordinals(module, exports->AddressOfNameOrdinals); in InternalGetProcAddress()
953 RVAPtr<char> name(module, names[i]); in InternalGetProcAddress()
956 RVAPtr<char> func(module, functions[index]); in InternalGetProcAddress()
1013 RVAPtr<IMAGE_DOS_HEADER> dos_stub(module, 0); in OverrideImportedFunction()
1014 RVAPtr<IMAGE_NT_HEADERS> headers(module, dos_stub->e_lfanew); in OverrideImportedFunction()
1027 RVAPtr<IMAGE_IMPORT_DESCRIPTOR> imports(module, in OverrideImportedFunction()
1030 RVAPtr<const char> modname(module, imports->Name); in OverrideImportedFunction()
1041 RVAPtr<IMAGE_THUNK_DATA> name_table(module, imports->OriginalFirstThunk); in OverrideImportedFunction()
1042 RVAPtr<IMAGE_THUNK_DATA> iat(module, imports->FirstThunk); in OverrideImportedFunction()
1045 RVAPtr<IMAGE_IMPORT_BY_NAME> import_by_name( in OverrideImportedFunction()