Home
last modified time | relevance | path

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

/art/libartbase/base/
Dsafe_map.h52 explicit SafeMap(const allocator_type& allocator) : map_(allocator) {} in SafeMap()
54 : map_(cmp, allocator) { in map_() function
58 map_ = rhs.map_;
62 allocator_type get_allocator() const { return map_.get_allocator(); } in get_allocator()
63 key_compare key_comp() const { return map_.key_comp(); } in key_comp()
64 value_compare value_comp() const { return map_.value_comp(); } in value_comp()
66 iterator begin() { return map_.begin(); } in begin()
67 const_iterator begin() const { return map_.begin(); } in begin()
68 iterator end() { return map_.end(); } in end()
69 const_iterator end() const { return map_.end(); } in end()
[all …]
Dvariant_map.h260 ScopedRemove(VariantMap& map, const TKey<TValue>& key) : map_(map), key_(key) {} in ScopedRemove()
262 map_.Remove(key_); in ~ScopedRemove()
265 VariantMap& map_; member
/art/runtime/
Ddex_reference_collection.h45 : map_(map_allocator), in map_() function
53 return map_; in GetMap()
58 for (auto&& pair : map_) { in NumReferences()
65 DexFileMap map_;
76 current_vector_ = &map_.emplace(dex, IndexVector(vector_allocator_)).first->second; in GetOrInsertVector()
/art/runtime/base/
Dmem_map_arena_pool.cc44 MemMap map_; member in art::MemMapArena
48 : map_(Allocate(size, low_4gb, name)) { in MemMapArena()
49 memory_ = map_.Begin(); in MemMapArena()
53 size_ = map_.Size(); in MemMapArena()
87 map_.MadviseDontNeedAndZero(); in Release()
/art/runtime/oat/
Delf_file_impl.h68 return map_.Begin(); in Begin()
72 return map_.End(); in End()
76 return map_.Size(); in Size()
199 MemMap map_; variable
Delf_file.cc421 map_ = std::move(map); in SetMap()
422 CHECK(map_.IsValid()) << file->GetPath(); in SetMap()
423 CHECK(map_.Begin() != nullptr) << file->GetPath(); in SetMap()
425 header_ = reinterpret_cast<Elf_Ehdr*>(map_.Begin()); in SetMap()
/art/tools/jvmti-agents/ti-alloc-sample/
Dti_alloc_sample.cc260 if (map_.find(key) == map_.end()) { in Intern()
261 map_[key] = next_index_; in Intern()
266 return std::to_string(map_[key]); in Intern()
270 std::map<std::string, int32_t> map_; member in tifast::__anonf824abc00111::UniqueStringTable
/art/runtime/jit/
Djit_code_cache.h119 : map_(), region_(region), compilation_state_(nullptr) {} in ZygoteMap()
156 return map_.cbegin(); in cbegin()
159 return map_.begin(); in begin()
162 return map_.cend(); in cend()
165 return map_.end(); in end()
170 ArrayRef<const Entry> map_;
Djit_code_cache.cc1884 map_ = ArrayRef(data, capacity); in Initialize()
1891 if (map_.empty()) { in GetCodeFor()
1898 for (const Entry& entry : map_) { in GetCodeFor()
1911 size_t index = hf(method) & (map_.size() - 1u); in GetCodeFor()
1918 const Entry& entry = map_[index]; in GetCodeFor()
1934 index = (index + 1) & (map_.size() - 1); in GetCodeFor()
1940 if (map_.empty()) { in Put()
1945 size_t index = hf(method) & (map_.size() - 1); in Put()
1951 const Entry* entry = &map_[index]; in Put()
1958 index = (index + 1) & (map_.size() - 1); in Put()
/art/openjdkjvmti/
Dti_heap.cc1635 : map_(map), ref_(ref) {} in ReplaceObjectReferences()
1645 auto it = map_.find(root->AsMirrorPtr()); in ReplaceObjectReferences()
1646 if (it != map_.end()) { in ReplaceObjectReferences()
1656 auto it = map_.find(obj->GetFieldObject<art::mirror::Object>(off)); in ReplaceObjectReferences()
1657 if (it != map_.end()) { in ReplaceObjectReferences()
1683 const ObjectMap& map_; in ReplaceObjectReferences()
1707 explicit ResizeRootVisitor(const ObjectMap& map) : map_(map) {} in ReplaceStrongRoots()
1716 auto it = map_.find(*obj); in ReplaceStrongRoots()
1717 if (it != map_.end()) { in ReplaceStrongRoots()
1743 auto it = map_.find(obj->AsMirrorPtr()); in ReplaceStrongRoots()
[all …]
Dti_redefine.cc208 art::ArtMethod* obsolete = map_->obsolete_methods_->GetElementPtrSize<art::ArtMethod*>( in operator *()
215 return map_ == other.map_ && iter_ == other.iter_; in operator ==()
236 : map_(map), iter_(iter) {} in ObsoleteMapIter()
238 const ObsoleteMap* map_; member in openjdkjvmti::ObsoleteMap::ObsoleteMapIter