Home
last modified time | relevance | path

Searched refs:stackDepth (Results 1 – 8 of 8) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/dfx/hprof/tests/
Dheap_sampling_test.cpp59 int stackDepth = 128; // default depth in HWTEST_F_L0() local
60 bool result = heapProfile->StartHeapSampling(samplingInterval, stackDepth); in HWTEST_F_L0()
62 result = heapProfile->StartHeapSampling(samplingInterval, stackDepth); in HWTEST_F_L0()
70 int stackDepth = 128; // default depth in HWTEST_F_L0() local
71 bool result = heapProfile->StartHeapSampling(samplingInterval, stackDepth); in HWTEST_F_L0()
74 result = heapProfile->StartHeapSampling(samplingInterval, stackDepth); in HWTEST_F_L0()
84 int stackDepth = 128; // default depth in HWTEST_F_L0() local
85 heapProfile->StartHeapSampling(samplingInterval, stackDepth); in HWTEST_F_L0()
94 int stackDepth = 128; // default depth in HWTEST_F_L0() local
96 const_cast<Heap *>(instance->GetHeap()), samplingInterval, stackDepth); in HWTEST_F_L0()
/arkcompiler/toolchain/tooling/backend/
Djs_single_stepper.cpp41 uint32_t stackDepth = GetStackDepth(); in StepComplete() local
53 if (stackDepth_ < stackDepth) { in StepComplete()
56 if (stackDepth_ == stackDepth && InStepRange(bcOffset)) { in StepComplete()
62 if (stackDepth_ <= stackDepth) { in StepComplete()
/arkcompiler/ets_runtime/ecmascript/dfx/hprof/
Dheap_profiler_interface.h50 virtual bool StartHeapSampling(uint64_t samplingInterval, int stackDepth = 128) = 0;
Dheap_sampling.h60 HeapSampling(const EcmaVM *vm, Heap *const heap, uint64_t interval, int stackDepth);
Dheap_sampling.cpp21 HeapSampling::HeapSampling(const EcmaVM *vm, Heap *const heap, uint64_t interval, int stackDepth) in HeapSampling() argument
25 stackDepth_(stackDepth), in HeapSampling()
Dheap_profiler.h87 bool StartHeapSampling(uint64_t samplingInterval, int stackDepth = 128) override;
Dheap_profiler.cpp336 bool HeapProfiler::StartHeapSampling(uint64_t samplingInterval, int stackDepth) in StartHeapSampling() argument
343 samplingInterval, stackDepth); in StartHeapSampling()
/arkcompiler/toolchain/tooling/agent/
Ddebugger_impl.cpp994 uint32_t stackDepth = DebuggerApi::GetStackDepth(vm_); in DropFrame() local
995 if (droppedDepth > stackDepth) { in DropFrame()
998 if (droppedDepth == stackDepth) { in DropFrame()