| 207 | // TODO: implement all the virtual methods. |
| 208 | |
| 209 | bool DexFileLoader::GetMultiDexChecksums( |
| 210 | const char* filename ATTRIBUTE_UNUSED, |
| 211 | std::vector<uint32_t>* checksums ATTRIBUTE_UNUSED, |
| 212 | std::string* error_msg, |
| 213 | int zip_fd ATTRIBUTE_UNUSED, |
| 214 | bool* zip_file_only_contains_uncompress_dex ATTRIBUTE_UNUSED) const { |
| 215 | *error_msg = "UNIMPLEMENTED"; |
| 216 | return false; |
| 217 | } |
| 218 | |
| 219 | std::unique_ptr<const DexFile> DexFileLoader::Open(const uint8_t* base, |
| 220 | size_t size, |
nothing calls this directly
no outgoing calls
no test coverage detected