Lines Matching refs:table_mem_map_
81 table_mem_map_.reset(MemMap::MapAnonymous("indirect ref table", nullptr, table_bytes, in IndirectReferenceTable()
84 CHECK(table_mem_map_.get() != nullptr) << error_str; in IndirectReferenceTable()
85 CHECK_EQ(table_mem_map_->Size(), table_bytes); in IndirectReferenceTable()
86 CHECK(table_mem_map_->Begin() != nullptr); in IndirectReferenceTable()
87 } else if (table_mem_map_.get() == nullptr || in IndirectReferenceTable()
88 table_mem_map_->Size() != table_bytes || in IndirectReferenceTable()
89 table_mem_map_->Begin() == nullptr) { in IndirectReferenceTable()
90 table_mem_map_.reset(); in IndirectReferenceTable()
94 table_ = reinterpret_cast<IrtEntry*>(table_mem_map_->Begin()); in IndirectReferenceTable()
102 return table_mem_map_.get() != nullptr; in IsValid()
268 uint8_t* release_end = table_mem_map_->End(); in Trim()