Searched refs:oat_dex_files_ (Results 1 - 5 of 5) sorted by relevance

/art/compiler/
H A Doat_writer.cc334 oat_dex_files_.emplace_back(location,
370 oat_dex_files_.emplace_back(full_location,
402 oat_dex_files_.emplace_back(location, DexFileSource(data.data()), create_type_lookup_table);
403 oat_dex_files_.back().dex_file_location_checksum_ = location_checksum;
409 locations.reserve(oat_dex_files_.size());
410 for (const OatDexFile& oat_dex_file : oat_dex_files_) {
429 dchecked_integral_cast<uint32_t>(oat_dex_files_.size()),
440 for (OatDexFile& oat_dex_file : oat_dex_files_) {
445 for (OatDexFile& oat_dex_file : oat_dex_files_) {
458 if (!oat_dex_files_
[all...]
H A Doat_writer.h320 dchecked_vector<OatDexFile> oat_dex_files_; member in class:art::OatWriter::CreateTypeLookupTable
/art/runtime/
H A Doat_file.cc469 // Add the location and canonical location (if different) to the oat_dex_files_ table.
471 oat_dex_files_.Put(key, oat_dex_file);
474 oat_dex_files_.Put(canonical_key, oat_dex_file);
1086 // Try to find the key cheaply in the oat_dex_files_ map which holds dex locations
1088 auto primary_it = oat_dex_files_.find(key);
1089 if (primary_it != oat_dex_files_.end()) {
1105 auto canonical_it = oat_dex_files_.find(canonical_key);
1106 if (canonical_it != oat_dex_files_.end()) {
H A Doat_file.h297 // for keys in oat_dex_files_ and the string_cache_ entries for the backing storage
305 Table oat_dex_files_; member in class:art::OatFile
310 // If the primary oat_dex_files_ lookup fails, use a secondary map. This map stores
/art/oatdump/
H A Doatdump.cc331 oat_dex_files_(oat_file.GetOatDexFiles()),
451 for (size_t i = 0; i < oat_dex_files_.size(); i++) {
452 const OatFile::OatDexFile* oat_dex_file = oat_dex_files_[i];
490 for (size_t i = 0; i < oat_dex_files_.size(); i++) {
491 const OatFile::OatDexFile* oat_dex_file = oat_dex_files_[i];
519 for (size_t i = 0; i < oat_dex_files_.size(); i++) {
520 const OatFile::OatDexFile* oat_dex_file = oat_dex_files_[i];
1260 const std::vector<const OatFile::OatDexFile*> oat_dex_files_; member in class:art::OatDumper

Completed in 65 milliseconds