• Home
  • Raw
  • Download

Lines Matching refs:cell_space_

82       cell_space_(NULL),  in Heap()
165 map_space_->Capacity() + cell_space_->Capacity() + in Capacity()
175 map_space_->CommittedMemory() + cell_space_->CommittedMemory() + in CommittedMemory()
188 cell_space_->CommittedPhysicalMemory() + in CommittedPhysicalMemory()
216 map_space_->Available() + cell_space_->Available() + in Available()
223 code_space_ != NULL && map_space_ != NULL && cell_space_ != NULL && in HasBeenSetUp()
362 cell_space_->SizeOfObjects() / KB, cell_space_->Available() / KB, in PrintShortHeapStatistics()
363 cell_space_->CommittedMemory() / KB); in PrintShortHeapStatistics()
1477 HeapObjectIterator cell_iterator(cell_space_); in Scavenge()
4434 cell_space_->ReportStatistics(); in ReportHeapStatistics()
4453 map_space_->Contains(addr) || cell_space_->Contains(addr) || in Contains()
4480 return cell_space_->Contains(addr); in InSpace()
4519 cell_space_->Verify(&no_dirty_regions_visitor); in Verify()
4942 *stats->cell_space_size = cell_space_->SizeOfObjects(); in RecordStats()
4943 *stats->cell_space_capacity = cell_space_->Capacity(); in RecordStats()
4970 map_space_->SizeOfObjects() + cell_space_->SizeOfObjects() + in PromotedSpaceSizeOfObjects()
5117 cell_space_ = new CellSpace(this, max_old_generation_size_, CELL_SPACE); in SetUp()
5118 if (cell_space_ == NULL) return false; in SetUp()
5119 if (!cell_space_->SetUp()) return false; in SetUp()
5227 cell_space_->MaximumCommittedMemory()); in TearDown()
5273 if (cell_space_ != NULL) { in TearDown()
5274 cell_space_->TearDown(); in TearDown()
5275 delete cell_space_; in TearDown()
5276 cell_space_ = NULL; in TearDown()