HomeSort by relevance Sort by last modified time
    Searched refs:MethodPatchInfo (Results 1 - 3 of 3) sorted by null

  /external/chromium_org/chrome_frame/
vtable_patch_manager.h 33 struct MethodPatchInfo {
43 // @param[in] patches An array of MethodPatchInfo structures describing
46 HRESULT PatchInterfaceMethods(void* unknown, MethodPatchInfo* patches);
52 // @param[in] patches An array of MethodPatchInfo structures describing
55 HRESULT UnpatchInterfaceMethods(MethodPatchInfo* patches);
63 explicit DynamicPatchManager(const MethodPatchInfo* patch_prototype);
75 MethodPatchInfo patch_info_[1];
85 const MethodPatchInfo* patch_prototype_;
96 vtable_patch::MethodPatchInfo IFName##_PatchInfo[] = {
107 for (vtable_patch::MethodPatchInfo* it = IFName##_PatchInfo;
    [all...]
vtable_patch_manager.cc 63 HRESULT PatchInterfaceMethods(void* unknown, MethodPatchInfo* patches) {
73 // All VM operations, patching and manipulation of MethodPatchInfo
79 for (MethodPatchInfo* it = patches; it->index_ != -1; ++it) {
154 HRESULT UnpatchInterfaceMethods(MethodPatchInfo* patches) {
157 for (MethodPatchInfo* it = patches; it->index_ != -1; ++it) {
179 DynamicPatchManager::DynamicPatchManager(const MethodPatchInfo* patch_prototype)
199 sizeof(MethodPatchInfo) * patched_methods;
203 sizeof(MethodPatchInfo) * (patched_methods + 1));
vtable_patch_manager_unittest.cc 39 extern vtable_patch::MethodPatchInfo IClassFactory_PatchInfo[];

Completed in 44 milliseconds