Home
last modified time | relevance | path

Searched refs:table_mem_map_ (Results 1 – 2 of 2) sorted by relevance

/art/runtime/
Dindirect_reference_table.cc81 table_mem_map_.reset(MemMap::MapAnonymous("indirect ref table", nullptr, table_bytes, in IndirectReferenceTable()
83 if (table_mem_map_.get() == nullptr && error_msg->empty()) { in IndirectReferenceTable()
87 if (table_mem_map_.get() != nullptr) { in IndirectReferenceTable()
88 table_ = reinterpret_cast<IrtEntry*>(table_mem_map_->Begin()); in IndirectReferenceTable()
128 return table_mem_map_.get() != nullptr; in IsValid()
231 memcpy(new_map->Begin(), table_mem_map_->Begin(), table_mem_map_->Size()); in Resize()
232 table_mem_map_ = std::move(new_map); in Resize()
233 table_ = reinterpret_cast<IrtEntry*>(table_mem_map_->Begin()); in Resize()
447 uint8_t* release_end = table_mem_map_->End(); in Trim()
Dindirect_reference_table.h401 std::unique_ptr<MemMap> table_mem_map_; variable