Home
last modified time | relevance | path

Searched refs:map_ (Results 1 – 5 of 5) sorted by relevance

/art/runtime/
Dsafe_map.h42 map_ = rhs.map_;
46 iterator begin() { return map_.begin(); } in begin()
47 const_iterator begin() const { return map_.begin(); } in begin()
48 iterator end() { return map_.end(); } in end()
49 const_iterator end() const { return map_.end(); } in end()
51 bool empty() const { return map_.empty(); } in empty()
52 size_type size() const { return map_.size(); } in size()
54 void clear() { map_.clear(); } in clear()
55 void erase(iterator it) { map_.erase(it); } in erase()
56 size_type erase(const K& k) { return map_.erase(k); } in erase()
[all …]
Delf_file.h48 return map_->Begin(); in Begin()
52 return map_->End(); in End()
56 return map_->Size(); in Size()
149 UniquePtr<MemMap> map_; variable
Delf_file.cc177 map_.reset(map); in SetMap()
178 CHECK(map_.get() != NULL) << file_->GetPath(); in SetMap()
179 CHECK(map_->Begin() != NULL) << file_->GetPath(); in SetMap()
181 header_ = reinterpret_cast<llvm::ELF::Elf32_Ehdr*>(map_->Begin()); in SetMap()
/art/compiler/dex/
Darena_allocator.cc47 map_(nullptr), in Arena()
50 map_ = MemMap::MapAnonymous("dalvik-arena", NULL, size, PROT_READ | PROT_WRITE); in Arena()
51 memory_ = map_->Begin(); in Arena()
52 size_ = map_->Size(); in Arena()
61 delete map_; in ~Arena()
Darena_allocator.h59 MemMap* map_; variable