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

  /art/runtime/
oat_file.cc 343 // Add the location and canonical location (if different) to the oat_dex_files_ table.
345 oat_dex_files_.Put(key, oat_dex_file);
348 oat_dex_files_.Put(canonical_key, oat_dex_file);
381 // Try to find the key cheaply in the oat_dex_files_ map which holds dex locations
383 auto primary_it = oat_dex_files_.find(key);
384 if (primary_it != oat_dex_files_.end()) {
400 auto canonical_it = oat_dex_files_.find(canonical_key);
401 if (canonical_it != oat_dex_files_.end()) {
oat_file.h 345 // for keys in oat_dex_files_ and the string_cache_ entries for the backing storage
353 Table oat_dex_files_; member in class:art::OatFile
358 // If the primary oat_dex_files_ lookup fails, use a secondary map. This map stores
  /art/compiler/
oat_writer.cc 128 CHECK_EQ(dex_files_->size(), oat_dex_files_.size());
136 STLDeleteElements(&oat_dex_files_);
759 oat_dex_files_.push_back(oat_dex_file);
774 oat_dex_files_[i]->dex_file_offset_ = offset;
789 // Update oat_dex_files_.
791 for (OatDexFile* oat_dex_file : oat_dex_files_) {
    [all...]
oat_writer.h 262 std::vector<OatDexFile*> oat_dex_files_;
  /art/oatdump/
oatdump.cc 144 oat_dex_files_(oat_file.GetOatDexFiles()),
249 for (size_t i = 0; i < oat_dex_files_.size(); i++) {
250 const OatFile::OatDexFile* oat_dex_file = oat_dex_files_[i];
278 for (size_t i = 0; i < oat_dex_files_.size(); i++) {
279 const OatFile::OatDexFile* oat_dex_file = oat_dex_files_[i];
307 for (size_t i = 0; i < oat_dex_files_.size(); i++) {
308 const OatFile::OatDexFile* oat_dex_file = oat_dex_files_[i];
957 const std::vector<const OatFile::OatDexFile*> oat_dex_files_; member in class:art::OatDumper
    [all...]

Completed in 328 milliseconds