| 95 | void *oat_dex_file, void *error_msg); |
| 96 | |
| 97 | static void * |
| 98 | (new_arm64_open_memory)(uint8_t *base, size_t size, void *location, |
| 99 | uint32_t location_checksum, void *mem_map, |
| 100 | void *oat_dex_file, void *error_msg) { |
| 101 | if (size > DEX_MIN_LEN) { |
| 102 | save_dex_file(base, size); |
| 103 | } |
| 104 | return (*old_arm64_open_memory)(base, size, location, location_checksum, mem_map, |
| 105 | oat_dex_file, error_msg); |
| 106 | } |
| 107 | ///////////////////// |
| 108 | |
| 109 | //32位 |
nothing calls this directly
no test coverage detected