Searched refs:map_ (Results 1 - 5 of 5) sorted by last modified time

/art/runtime/
H A Dsafe_map.h48 : map_(cmp, allocator) {
52 map_ = rhs.map_;
56 allocator_type get_allocator() const { return map_.get_allocator(); }
57 key_compare key_comp() const { return map_.key_comp(); }
58 value_compare value_comp() const { return map_.value_comp(); }
60 iterator begin() { return map_.begin(); }
61 const_iterator begin() const { return map_.begin(); }
62 iterator end() { return map_.end(); }
63 const_iterator end() const { return map_
119 ::std::map<K, V, Comparator, Allocator> map_; member in class:art::SafeMap
[all...]
H A Delf_file.cc458 map_.reset(map);
459 CHECK(map_.get() != nullptr) << file_->GetPath();
460 CHECK(map_->Begin() != nullptr) << file_->GetPath();
462 header_ = reinterpret_cast<Elf32_Ehdr*>(map_->Begin());
H A Delf_file.h58 return map_->Begin();
63 return map_->End();
67 return map_->Size();
177 std::unique_ptr<MemMap> map_; member in class:art::ElfFile
/art/compiler/utils/
H A Darena_allocator.cc116 map_(nullptr),
120 map_ = MemMap::MapAnonymous("dalvik-arena", NULL, size, PROT_READ | PROT_WRITE, false,
122 CHECK(map_ != nullptr) << error_msg;
123 memory_ = map_->Begin();
124 size_ = map_->Size();
133 delete map_;
144 map_->MadviseDontNeedAndZero();
H A Darena_allocator.h135 MemMap* map_; member in class:art::Arena

Completed in 103 milliseconds