| 135 | |
| 136 | |
| 137 | static void *new_opencommon(void *DexFile_thiz, uint8_t *base, size_t size, void *location, |
| 138 | uint32_t location_checksum, void *oat_dex_file, bool verify, |
| 139 | bool verify_checksum, |
| 140 | void *error_meessage, void *verify_result) { |
| 141 | if (size > DEX_MIN_LEN) { |
| 142 | save_dex_file(base, size); |
| 143 | } |
| 144 | return (*old_opencommon)(DexFile_thiz, base, size, location, location_checksum, |
| 145 | oat_dex_file, verify, verify_checksum, error_meessage, |
| 146 | verify_result); |
| 147 | } |
| 148 | ///////////////////// |
| 149 | |
| 150 | void **get_old_open_function_addr() { |
nothing calls this directly
no test coverage detected