Home
last modified time | relevance | path

Searched refs:GetAllocationProfile (Results 1 – 11 of 11) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/dfx/hprof/tests/
Dheap_sampling_test.cpp78 HWTEST_F_L0(HeapSamplingTest, GetAllocationProfile) in HWTEST_F_L0() argument
81 const SamplingInfo *result = heapProfile->GetAllocationProfile(); in HWTEST_F_L0()
86 result = heapProfile->GetAllocationProfile(); in HWTEST_F_L0()
100 const SamplingInfo *result = heapSampling->GetAllocationProfile(); in HWTEST_F_L0()
/arkcompiler/ets_runtime/test/fuzztest/getallocationprofile_fuzzer/
Dgetallocationprofile_fuzzer.cpp44 DFXJSNApi::GetAllocationProfile(vm); in GetAllocationProfileFuzzerTest()
/arkcompiler/ets_runtime/ecmascript/dfx/hprof/
Dheap_profiler_interface.h52 virtual const struct SamplingInfo *GetAllocationProfile() = 0;
Dheap_sampling.h61 const struct SamplingInfo* GetAllocationProfile();
Dheap_profiler.h89 const struct SamplingInfo *GetAllocationProfile() override;
Dheap_profiler.cpp352 const struct SamplingInfo *HeapProfiler::GetAllocationProfile() in GetAllocationProfile() function in panda::ecmascript::HeapProfiler
358 return heapSampling_->GetAllocationProfile(); in GetAllocationProfile()
Dheap_sampling.cpp41 const struct SamplingInfo *HeapSampling::GetAllocationProfile() in GetAllocationProfile() function in panda::ecmascript::HeapSampling
/arkcompiler/ets_runtime/ecmascript/napi/test/
Ddfx_jsnapi_tests.cpp347 HWTEST_F_L0(DFXJSNApiTests, GetAllocationProfile) in HWTEST_F_L0() argument
349 const SamplingInfo *result = DFXJSNApi::GetAllocationProfile(vm_); in HWTEST_F_L0()
353 result = DFXJSNApi::GetAllocationProfile(vm_); in HWTEST_F_L0()
/arkcompiler/ets_runtime/ecmascript/napi/include/
Ddfx_jsnapi.h101 static const SamplingInfo *GetAllocationProfile(const EcmaVM *vm);
/arkcompiler/ets_runtime/ecmascript/napi/
Ddfx_jsnapi.cpp533 const SamplingInfo *DFXJSNApi::GetAllocationProfile([[maybe_unused]] const EcmaVM *vm) in GetAllocationProfile() function in panda::DFXJSNApi
538 return heapProfile->GetAllocationProfile(); in GetAllocationProfile()
/arkcompiler/toolchain/tooling/agent/
Dheapprofiler_impl.cpp292 auto samplingInfo = panda::DFXJSNApi::GetAllocationProfile(vm_); in GetSamplingProfile()