Home
last modified time | relevance | path

Searched refs:StartHeapSampling (Results 1 – 6 of 6) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/dfx/hprof/tests/
Dheap_sampling_test.cpp55 HWTEST_F_L0(HeapSamplingTest, StartHeapSampling) in HWTEST_F_L0() argument
60 bool result = heapProfile->StartHeapSampling(samplingInterval, stackDepth); in HWTEST_F_L0()
62 result = heapProfile->StartHeapSampling(samplingInterval, stackDepth); in HWTEST_F_L0()
71 bool result = heapProfile->StartHeapSampling(samplingInterval, stackDepth); in HWTEST_F_L0()
74 result = heapProfile->StartHeapSampling(samplingInterval, stackDepth); in HWTEST_F_L0()
85 heapProfile->StartHeapSampling(samplingInterval, stackDepth); in HWTEST_F_L0()
Dheap_dump_test.cpp573 bool StartHeapSampling(uint64_t samplingInterval, int stackDepth = 128) override in StartHeapSampling() function in panda::test::MockHeapProfiler
575 return profiler_->StartHeapSampling(samplingInterval, stackDepth); in StartHeapSampling()
/arkcompiler/ets_runtime/ecmascript/dfx/hprof/
Dheap_profiler_interface.h63 virtual bool StartHeapSampling(uint64_t samplingInterval, int stackDepth = 128) = 0;
Dheap_profiler.h136 bool StartHeapSampling(uint64_t samplingInterval, int stackDepth = 128) override;
Dheap_profiler.cpp1185 bool HeapProfiler::StartHeapSampling(uint64_t samplingInterval, int stackDepth) in StartHeapSampling() function in panda::ecmascript::HeapProfiler
/arkcompiler/ets_runtime/ecmascript/napi/
Ddfx_jsnapi.cpp867 return heapProfile->StartHeapSampling(samplingInterval); in StartSampling()