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 362 oat_dex_files_.emplace_back(location,
398 oat_dex_files_.emplace_back(full_location,
428 oat_dex_files_.emplace_back(full_location,
431 oat_dex_files_.back().dex_file_location_checksum_ = vdex_file.GetLocationChecksum(i);
439 if (oat_dex_files_.empty()) {
467 oat_dex_files_.emplace_back(location, DexFileSource(data.data()), create_type_lookup_table);
468 oat_dex_files_.back().dex_file_location_checksum_ = location_checksum;
474 locations.reserve(oat_dex_files_.size());
475 for (const OatDexFile& oat_dex_file : oat_dex_files_) {
504 vdex_size_ = sizeof(VdexFile::Header) + oat_dex_files_.size() * sizeof(VdexFile::VdexChecksum)
    [all...]
oat_writer.h 396 dchecked_vector<OatDexFile> oat_dex_files_; member in class:art::OatWriter::CreateTypeLookupTable
  /art/runtime/
oat_file.cc 576 // Add the location and canonical location (if different) to the oat_dex_files_ table.
578 oat_dex_files_.Put(key, oat_dex_file);
581 oat_dex_files_.Put(canonical_key, oat_dex_file);
    [all...]
oat_file.h 339 // for keys in oat_dex_files_ and the string_cache_ entries for the backing storage
347 Table oat_dex_files_; member in class:art::OatFile
352 // If the primary oat_dex_files_ lookup fails, use a secondary map. This map stores
  /art/oatdump/
oatdump.cc 347 oat_dex_files_(oat_file.GetOatDexFiles()),
472 for (size_t i = 0; i < oat_dex_files_.size(); i++) {
473 const OatFile::OatDexFile* oat_dex_file = oat_dex_files_[i];
498 for (size_t i = 0; i < oat_dex_files_.size(); i++) {
499 const DexFile* dex_file = OpenDexFile(oat_dex_files_[i], &error_msg);
515 for (size_t i = 0; i < oat_dex_files_.size(); i++) {
516 const OatFile::OatDexFile* oat_dex_file = oat_dex_files_[i];
560 for (size_t i = 0; i < oat_dex_files_.size(); i++) {
561 const OatFile::OatDexFile* oat_dex_file = oat_dex_files_[i];
738 for (size_t i = 0; i < oat_dex_files_.size(); i++)
1708 const std::vector<const OatFile::OatDexFile*> oat_dex_files_; member in class:art::OatDumper
    [all...]

Completed in 205 milliseconds