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

  /art/runtime/
oat_file_manager.cc 58 CHECK(oat_files_.find(oat_file) == oat_files_.end());
59 for (const std::unique_ptr<const OatFile>& existing : oat_files_) {
68 oat_files_.insert(std::move(oat_file));
76 auto it = oat_files_.find(compare);
77 CHECK(it != oat_files_.end());
78 oat_files_.erase(it);
85 for (const std::unique_ptr<const OatFile>& oat_file : oat_files_) {
104 for (const std::unique_ptr<const OatFile>& oat_file : oat_files_) {
126 for (const std::unique_ptr<const OatFile>& oat_file : oat_files_) {
    [all...]
class_table-inl.h 38 for (const OatFile* oat_file : oat_files_) {
56 for (const OatFile* oat_file : oat_files_) {
oat_file_manager.h 126 std::set<std::unique_ptr<const OatFile>> oat_files_ GUARDED_BY(Locks::oat_file_manager_lock_);
class_table.cc 238 // If `obj` is a dex cache associated with a new oat file with GC roots, add it to oat_files_.
257 if (ContainsElement(oat_files_, oat_file)) {
260 oat_files_.push_back(oat_file);
297 oat_files_.clear();
class_table.h 287 std::vector<const OatFile*> oat_files_ GUARDED_BY(lock_);
  /art/dex2oat/
dex2oat.cc 644 for (std::unique_ptr<File>& oat_file : oat_files_) {
2864 std::vector<std::unique_ptr<File>> oat_files_; member in class:art::FINAL
    [all...]

Completed in 177 milliseconds