Searched refs:GetFootprint (Results 1 - 12 of 12) sorted by relevance
/arkcompiler/runtime_core/static_core/runtime/tests/ |
H A D | mem_stats_test.cpp | 84 rawBytesFootprintBeforeRest_(stats->GetFootprint(SpaceType::SPACE_TYPE_INTERNAL)) in RawStatsBeforeTest() 108 ASSERT_EQ(bytesInHeap, stats->GetFootprint(SpaceType::SPACE_TYPE_OBJECT)); in AssertHeapStats() 115 ASSERT_EQ(bytesInHeap, stats->GetFootprint(SpaceType::SPACE_TYPE_HUMONGOUS_OBJECT)); in AssertHeapHumongousStats() 150 stats->GetFootprint(SpaceType::SPACE_TYPE_INTERNAL)); in AssertRawStats() 174 ASSERT_EQ(initHeapBytes + BYTES_OBJECT1 + BYTES_OBJECT2, stats->GetFootprint(SpaceType::SPACE_TYPE_OBJECT)); in TEST_F() 254 ASSERT_EQ(rawStatsBeforeTest.GetRawBytesFootprintBeforeTest(), stats->GetFootprint(SpaceType::SPACE_TYPE_INTERNAL)); in TEST_F() 281 ASSERT_EQ(rawStatsBeforeTest.GetRawBytesFootprintBeforeTest(), stats->GetFootprint(SpaceType::SPACE_TYPE_INTERNAL)); in TEST_F() 306 ASSERT_EQ(rawStatsBeforeTest.GetRawBytesFootprintBeforeTest(), stats->GetFootprint(SpaceType::SPACE_TYPE_INTERNAL)); in TEST_F() 310 ASSERT_EQ(0, stats->GetFootprint(SpaceType::SPACE_TYPE_HUMONGOUS_OBJECT)); in TEST_F() 326 ASSERT_EQ(BYTES_ALLOC1 + BYTES_ALLOC2, stats.GetFootprint(SpaceTyp in TEST_F() [all...] |
H A D | mem_stats_additional_info_test.cpp | 81 ASSERT_EQ(BYTES_ALLOC1 + BYTES_ALLOC2, stats.GetFootprint(SpaceType::SPACE_TYPE_OBJECT)); in TEST_F()
|
/arkcompiler/runtime_core/static_core/libpandabase/tests/ |
H A D | base_mem_stats_test.cpp | 53 ASSERT_EQ(sum - N, stats.GetFootprint(SpaceType::SPACE_TYPE_CODE)); in TEST_F() 76 ASSERT_EQ(size1 + size2, stats.GetFootprint(SpaceType::SPACE_TYPE_CODE)); in TEST_F() 82 ASSERT_EQ(sizeof(buff1), stats.GetFootprint(SpaceType::SPACE_TYPE_CODE)); in TEST_F()
|
/arkcompiler/runtime_core/libpandabase/tests/ |
H A D | base_mem_stats_test.cpp | 51 ASSERT_EQ(sum - N, stats.GetFootprint(SpaceType::SPACE_TYPE_CODE)); in HWTEST_F() 70 ASSERT_EQ(size1 + size2, stats.GetFootprint(SpaceType::SPACE_TYPE_CODE)); in HWTEST_F() 76 ASSERT_EQ(sizeof(buff1), stats.GetFootprint(SpaceType::SPACE_TYPE_CODE)); in HWTEST_F()
|
/arkcompiler/runtime_core/libpandabase/mem/ |
H A D | base_mem_stats.h | 48 [[nodiscard]] uint64_t GetFootprint(SpaceType type_mem) const;
|
H A D | base_mem_stats.cpp | 110 uint64_t BaseMemStats::GetFootprint(SpaceType type_mem) const in GetFootprint() function in panda::BaseMemStats
|
/arkcompiler/runtime_core/static_core/libpandabase/mem/ |
H A D | base_mem_stats.h | 48 [[nodiscard]] PANDA_PUBLIC_API uint64_t GetFootprint(SpaceType typeMem) const;
|
H A D | base_mem_stats.cpp | 109 uint64_t BaseMemStats::GetFootprint(SpaceType typeMem) const in GetFootprint() function in ark::BaseMemStats
|
/arkcompiler/runtime_core/static_core/runtime/mem/ |
H A D | memory_manager.cpp | 98 ASSERT(memStats_->GetFootprint(SpaceType::SPACE_TYPE_INTERNAL) == 0); in ~MemoryManager()
|
H A D | internal_allocator.cpp | 120 if (memStats_->GetFootprint(SpaceType::SPACE_TYPE_INTERNAL) != 0) { in ~InternalAllocator()
|
/arkcompiler/runtime_core/static_core/runtime/mem/gc/ |
H A D | gc_stats.cpp | 170 largeObjectsFreedBytes_ = memStats_->GetFootprint(SpaceType::SPACE_TYPE_HUMONGOUS_OBJECT); in StartCollectStats() 179 size_t currentLargeObjectsFreedBytes = memStats_->GetFootprint(SpaceType::SPACE_TYPE_HUMONGOUS_OBJECT); in StopCollectStats()
|
/arkcompiler/runtime_core/static_core/runtime/ |
H A D | runtime.cpp | 127 ASSERT(daemonThreadsCnt_ > 0 || memStatsS_->GetFootprint(SpaceType::SPACE_TYPE_INTERNAL) == 0); in Destroy() 130 ASSERT(memStatsS_->GetFootprint(SpaceType::SPACE_TYPE_INTERNAL) <= daemonMemoryLeakThreshold_); in Destroy()
|
Completed in 8 milliseconds