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

  /art/compiler/
oat_writer.cc 404 oat_dex_files_.emplace_back(location,
440 oat_dex_files_.emplace_back(full_location,
470 oat_dex_files_.emplace_back(full_location,
473 oat_dex_files_.back().dex_file_location_checksum_ = vdex_file.GetLocationChecksum(i);
481 if (oat_dex_files_.empty()) {
509 oat_dex_files_.emplace_back(location, DexFileSource(data.data()), create_type_lookup_table);
510 oat_dex_files_.back().dex_file_location_checksum_ = location_checksum;
516 locations.reserve(oat_dex_files_.size());
517 for (const OatDexFile& oat_dex_file : oat_dex_files_) {
551 vdex_size_ = sizeof(VdexFile::Header) + oat_dex_files_.size() * sizeof(VdexFile::VdexChecksum)
    [all...]
oat_writer.h 418 dchecked_vector<OatDexFile> oat_dex_files_; member in class:art::OatWriter::CreateTypeLookupTable
  /art/runtime/
oat_file.h 350 // for keys in oat_dex_files_ and the string_cache_ entries for the backing storage
358 Table oat_dex_files_; member in class:art::OatFile
363 // If the primary oat_dex_files_ lookup fails, use a secondary map. This map stores
oat_file.cc 655 // Add the location and canonical location (if different) to the oat_dex_files_ table.
657 oat_dex_files_.Put(key, oat_dex_file);
660 oat_dex_files_.Put(canonical_key, oat_dex_file);
    [all...]
  /art/oatdump/
oatdump.cc 362 oat_dex_files_(oat_file.GetOatDexFiles()),
487 for (size_t i = 0; i < oat_dex_files_.size(); i++) {
488 const OatFile::OatDexFile* oat_dex_file = oat_dex_files_[i];
520 for (size_t i = 0; i < oat_dex_files_.size(); i++) {
521 const DexFile* dex_file = OpenDexFile(oat_dex_files_[i], &error_msg);
537 for (size_t i = 0; i < oat_dex_files_.size(); i++) {
538 const OatFile::OatDexFile* oat_dex_file = oat_dex_files_[i];
582 for (size_t i = 0; i < oat_dex_files_.size(); i++) {
583 const OatFile::OatDexFile* oat_dex_file = oat_dex_files_[i];
760 for (size_t i = 0; i < oat_dex_files_.size(); i++)
1768 const std::vector<const OatFile::OatDexFile*> oat_dex_files_; member in class:art::OatDumper
    [all...]

Completed in 85 milliseconds