| 107 | } |
| 108 | |
| 109 | HOOK_FUN(void, LoadMethodO, void *thiz, |
| 110 | void *dex_file, |
| 111 | void *method, |
| 112 | void *klass, |
| 113 | void *dst) { |
| 114 | orig_LoadMethodO(thiz, dex_file, method, klass, dst); |
| 115 | handleDumpByDexFile(dex_file); |
| 116 | } |
| 117 | |
| 118 | HOOK_FUN(void, LoadMethodM, void *thiz, |
| 119 | void *thread, |
nothing calls this directly
no test coverage detected