| 239 | } |
| 240 | |
| 241 | std::unique_ptr<const DexFile> DexFileLoader::OpenWithDataSection( |
| 242 | const uint8_t* base, |
| 243 | size_t size, |
| 244 | const uint8_t* data_base, |
| 245 | size_t data_size, |
| 246 | const std::string& location, |
| 247 | uint32_t location_checksum, |
| 248 | const OatDexFile* oat_dex_file, |
| 249 | bool verify, |
| 250 | bool verify_checksum, |
| 251 | std::string* error_msg) const { |
| 252 | return OpenCommon(base, |
| 253 | size, |
| 254 | data_base, |
| 255 | data_size, |
| 256 | location, |
| 257 | location_checksum, |
| 258 | oat_dex_file, |
| 259 | verify, |
| 260 | verify_checksum, |
| 261 | error_msg, |
| 262 | /*container*/ nullptr, |
| 263 | /*verify_result*/ nullptr); |
| 264 | } |
| 265 | |
| 266 | bool DexFileLoader::OpenAll( |
| 267 | const uint8_t* base, |
nothing calls this directly
no outgoing calls
no test coverage detected