Lines Matching +full:non +full:- +full:void
7 * http://www.apache.org/licenses/LICENSE-2.0
22 void GCStats::PrintStatisticResult(bool force) in PrintStatisticResult()
31 void GCStats::PrintSemiStatisticResult(bool force) in PrintSemiStatisticResult()
51 void GCStats::PrintPartialStatisticResult(bool force) in PrintPartialStatisticResult()
55 …LOG_GC(INFO) << " PartialGC with non-concurrent mark statistic: total old gc count " << partialGCC… in PrintPartialStatisticResult()
95 void GCStats::PrintCompressStatisticResult(bool force) in PrintCompressStatisticResult()
113 … << 1 - float(compressYoungAndOldAliveSize_) / (compressYoungCommitSize_ + compressOldCommitSize_) in PrintCompressStatisticResult()
114 << " non move total free size: " << sizeToMB(compressNonMoveTotalFreeSize_) << "MB" in PrintCompressStatisticResult()
115 << " non move total commit size: " << sizeToMB(compressNonMoveTotalCommitSize_) << "MB" in PrintCompressStatisticResult()
116 …<< " non move free rate: " << float(compressNonMoveTotalFreeSize_) / compressNonMoveTotalCommitSiz… in PrintCompressStatisticResult()
120 void GCStats::PrintHeapStatisticResult(bool force) in PrintHeapStatisticResult()
123 NativeAreaAllocator *nativeAreaAllocator = heap_->GetNativeAreaAllocator(); in PrintHeapStatisticResult()
124 HeapRegionAllocator *heapRegionAllocator = heap_->GetHeapRegionAllocator(); in PrintHeapStatisticResult()
126 … LOG_GC(INFO) << " Anno memory usage size: " << sizeToMB(heapRegionAllocator->GetAnnoMemoryUsage()) in PrintHeapStatisticResult()
128 … << " anno memory max usage size: " << sizeToMB(heapRegionAllocator->GetMaxAnnoMemoryUsage()) in PrintHeapStatisticResult()
130 … << " native memory usage size: " << sizeToMB(nativeAreaAllocator->GetNativeMemoryUsage()) in PrintHeapStatisticResult()
133 << sizeToMB(nativeAreaAllocator->GetMaxNativeMemoryUsage()) << "MB"; in PrintHeapStatisticResult()
134 …LOG_GC(INFO) << " Semi space commit size: " << sizeToMB(heap_->GetNewSpace()->GetCommittedSize()) … in PrintHeapStatisticResult()
135 … << " semi space heap object size: " << sizeToMB(heap_->GetNewSpace()->GetHeapObjectSize()) in PrintHeapStatisticResult()
138 << sizeToMB(heap_->GetOldSpace()->GetCommittedSize()) << "MB" in PrintHeapStatisticResult()
139 … << " old space heap object size: " << sizeToMB(heap_->GetOldSpace()->GetHeapObjectSize()) in PrintHeapStatisticResult()
141 << " non move space commit size: " in PrintHeapStatisticResult()
142 << sizeToMB(heap_->GetNonMovableSpace()->GetCommittedSize()) << "MB" in PrintHeapStatisticResult()
144 << sizeToMB(heap_->GetHugeObjectSpace()->GetCommittedSize()) << "MB" in PrintHeapStatisticResult()
146 << sizeToMB(heap_->GetAppSpawnSpace()->GetCommittedSize()) << "MB"; in PrintHeapStatisticResult()
150 void GCStats::StatisticSTWYoungGC(Duration time, size_t aliveSize, size_t promotedSize, size_t comm… in StatisticSTWYoungGC()
169 void GCStats::StatisticPartialGC(bool concurrentMark, Duration time, size_t freeSize) in StatisticPartialGC()
202 void GCStats::StatisticFullGC(Duration time, size_t youngAndOldAliveSize, size_t youngCommitSize, in StatisticFullGC()
225 void GCStats::CheckIfLongTimePause() in CheckIfLongTimePause()
238 void GCStats::StatisticConcurrentMark(Duration time) in StatisticConcurrentMark()
243 void GCStats::StatisticConcurrentMarkWait(Duration time) in StatisticConcurrentMarkWait()
248 void GCStats::StatisticConcurrentEvacuate(Duration time) in StatisticConcurrentEvacuate()
253 void GCStats::StatisticConcurrentRemark(Duration time) in StatisticConcurrentRemark()