Home
last modified time | relevance | path

Searched refs:GetAccumulatedAllocateSize (Results 1 - 5 of 5) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/napi/test/
H A Ddfx_jsnapi_tests.cpp316 size_t oldAllocateSize = DFXJSNApi::GetAccumulatedAllocateSize(vm_); in HWTEST_F_L0()
317 size_t expectAllocateSize = vm_->GetEcmaGCStats()->GetAccumulatedAllocateSize() + in HWTEST_F_L0()
318 ecmascript::SharedHeap::GetInstance()->GetEcmaGCStats()->GetAccumulatedAllocateSize(); in HWTEST_F_L0()
339 size_t newAllocateSize = DFXJSNApi::GetAccumulatedAllocateSize(vm_); in HWTEST_F_L0()
471 HWTEST_F_L0(DFXJSNApiTests, GetAccumulatedAllocateSize) in HWTEST_F_L0()
474 size_t size = DFXJSNApi::GetAccumulatedAllocateSize(vm_); in HWTEST_F_L0()
475 ASSERT_EQ(size, vm_->GetEcmaGCStats()->GetAccumulatedAllocateSize()); in HWTEST_F_L0()
478 size = DFXJSNApi::GetAccumulatedAllocateSize(vm_); in HWTEST_F_L0()
479 ASSERT_EQ(size, vm_->GetEcmaGCStats()->GetAccumulatedAllocateSize() + in HWTEST_F_L0()
480 ecmascript::SharedHeap::GetInstance()->GetEcmaGCStats()->GetAccumulatedAllocateSize()); in HWTEST_F_L0()
[all...]
/arkcompiler/ets_runtime/ecmascript/mem/
H A Dgc_stats.h202 virtual size_t GetAccumulatedAllocateSize();
334 size_t GetAccumulatedAllocateSize() override;
H A Dgc_stats.cpp388 size_t GCStats::GetAccumulatedAllocateSize() in GetAccumulatedAllocateSize() function in panda::ecmascript::GCStats
725 size_t SharedGCStats::GetAccumulatedAllocateSize() in GetAccumulatedAllocateSize() function in panda::ecmascript::SharedGCStats
/arkcompiler/ets_runtime/ecmascript/napi/include/
H A Ddfx_jsnapi.h99 static size_t GetAccumulatedAllocateSize(const EcmaVM *vm);
/arkcompiler/ets_runtime/ecmascript/napi/
H A Ddfx_jsnapi.cpp476 size_t DFXJSNApi::GetAccumulatedAllocateSize(const EcmaVM *vm) in GetAccumulatedAllocateSize() function in panda::DFXJSNApi
479 return vm->GetEcmaGCStats()->GetAccumulatedAllocateSize(); in GetAccumulatedAllocateSize()
481 return vm->GetEcmaGCStats()->GetAccumulatedAllocateSize() + in GetAccumulatedAllocateSize()
482 ecmascript::SharedHeap::GetInstance()->GetEcmaGCStats()->GetAccumulatedAllocateSize(); in GetAccumulatedAllocateSize()

Completed in 5 milliseconds