Home
last modified time | relevance | path

Searched refs:usedSize (Results 1 – 4 of 4) sorted by relevance

/arkcompiler/toolchain/tooling/agent/
Druntime_impl.cpp117 double usedSize = 0; in GetHeapUsage() local
119 DispatchResponse response = runtime_->GetHeapUsage(&usedSize, &totalSize); in GetHeapUsage()
120 GetHeapUsageReturns result(usedSize, totalSize); in GetHeapUsage()
166 DispatchResponse RuntimeImpl::GetHeapUsage(double *usedSize, double *totalSize) in GetHeapUsage() argument
170 *usedSize = static_cast<double>(DFXJSNApi::GetHeapUsedSize(vm_)); in GetHeapUsage()
173 *usedSize = 0; in GetHeapUsage()
Druntime_impl.h39 DispatchResponse GetHeapUsage(double *usedSize, double *totalSize);
/arkcompiler/toolchain/tooling/base/
Dpt_returns.h334 explicit GetHeapUsageReturns(double usedSize, double totalSize) in GetHeapUsageReturns() argument
335 : usedSize_(usedSize), totalSize_(totalSize) {} in GetHeapUsageReturns()
/arkcompiler/toolchain/tooling/test/
Ddebugger_returns_test.cpp307 double usedSize = 1; in HWTEST_F_L0() local
310 std::make_unique<GetHeapUsageReturns>(usedSize, totalSize); in HWTEST_F_L0()