HomeSort by relevance Sort by last modified time
    Searched refs:dex_headers (Results 1 - 5 of 5) sorted by null

  /art/test/692-vdex-inmem-loader/
vdex_inmem_loader.cc 84 std::vector<const DexFile::Header*> dex_headers; local
89 dex_headers.push_back(&dex_file->GetHeader());
97 return OatFileAssistant::AnonymousDexVdexLocation(dex_headers,
  /art/runtime/
vdex_file.cc 426 bool VdexFile::MatchesDexFileChecksums(const std::vector<const DexFile::Header*>& dex_headers)
429 if (dex_headers.size() != header.GetNumberOfDexFiles()) {
431 << header.GetNumberOfDexFiles() << ", actual=" << dex_headers.size() << ")";
435 for (size_t i = 0; i < dex_headers.size(); ++i) {
436 if (checksums[i] != dex_headers[i]->checksum_) {
oat_file_assistant.h 253 static bool AnonymousDexVdexLocation(const std::vector<const DexFile::Header*>& dex_headers,
vdex_file.h 346 // the checksums in `dex_headers`. Both the number of dex files and their
348 bool MatchesDexFileChecksums(const std::vector<const DexFile::Header*>& dex_headers) const;
oat_file_manager.cc 719 const std::vector<const DexFile::Header*> dex_headers = GetDexFileHeaders(dex_mem_maps); local
725 bool has_vdex = OatFileAssistant::AnonymousDexVdexLocation(dex_headers,
741 } else if (!vdex_file->MatchesDexFileChecksums(dex_headers)) {
    [all...]

Completed in 658 milliseconds