Home
last modified time | relevance | path

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

/art/runtime/
Dindirect_reference_table.cc75 table_mem_map_.reset(MemMap::MapAnonymous("indirect ref table", nullptr, table_bytes, in IndirectReferenceTable()
77 if (table_mem_map_.get() == nullptr && error_msg->empty()) { in IndirectReferenceTable()
81 if (table_mem_map_.get() != nullptr) { in IndirectReferenceTable()
82 table_ = reinterpret_cast<IrtEntry*>(table_mem_map_->Begin()); in IndirectReferenceTable()
122 return table_mem_map_.get() != nullptr; in IsValid()
218 memcpy(new_map->Begin(), table_mem_map_->Begin(), table_mem_map_->Size()); in Resize()
219 table_mem_map_ = std::move(new_map); in Resize()
220 table_ = reinterpret_cast<IrtEntry*>(table_mem_map_->Begin()); in Resize()
419 uint8_t* release_end = table_mem_map_->End(); in Trim()
Dindirect_reference_table.h387 std::unique_ptr<MemMap> table_mem_map_; variable