Searched refs:timeInterval (Results 1 - 8 of 8) sorted by relevance
/arkcompiler/ets_runtime/ecmascript/dfx/hprof/ |
H A D | heap_tracker.h | 33 HeapTrackerSample(HeapSnapshot *snapshot, double timeInterval, Stream *stream) in HeapTrackerSample() argument 34 : timeInterval_(timeInterval), snapshot_(snapshot), stream_(stream) in HeapTrackerSample() 72 HeapTracker(HeapSnapshot *snapshot, double timeInterval, Stream *stream) in HeapTracker() argument 73 : snapshot_(snapshot), sample_(snapshot, timeInterval, stream) {} in HeapTracker()
|
H A D | heap_profiler_interface.h | 59 virtual bool StartHeapTracking(double timeInterval, bool isVmMode = true, Stream *stream = nullptr,
|
H A D | heap_profiler.h | 146 bool StartHeapTracking(double timeInterval, bool isVmMode = true, Stream *stream = nullptr,
|
H A D | heap_profiler.cpp | 725 bool HeapProfiler::StartHeapTracking(double timeInterval, bool isVmMode, Stream *stream, in StartHeapTracking() argument 741 heapTracker_ = std::make_unique<HeapTracker>(snapshot, timeInterval, stream); in StartHeapTracking()
|
/arkcompiler/ets_runtime/ecmascript/napi/test/ |
H A D | dfx_jsnapi_tests.cpp | 177 double timeInterval = 50; // 50 : time interval 50 ms in HWTEST_F_L0() local 180 startResult = DFXJSNApi::StartHeapTracking(vm_, timeInterval, isVmMode, stream, traceAllocation); in HWTEST_F_L0() 225 double timeInterval = 50; // 50 : time interval 50 ms in HWTEST_F_L0() local 228 startResult = DFXJSNApi::StartHeapTracking(vm_, timeInterval, isVmMode, stream, traceAllocation); in HWTEST_F_L0()
|
/arkcompiler/ets_runtime/ecmascript/napi/include/ |
H A D | dfx_jsnapi.h | 81 static bool StartHeapTracking(const EcmaVM *vm, double timeInterval, bool isVmMode = true,
|
/arkcompiler/ets_runtime/ecmascript/napi/ |
H A D | dfx_jsnapi.cpp | 350 bool DFXJSNApi::StartHeapTracking([[maybe_unused]] const EcmaVM *vm, [[maybe_unused]] double timeInterval, in StartHeapTracking() argument 359 return heapProfile->StartHeapTracking(timeInterval, isVmMode, stream, traceAllocation, newThread); in StartHeapTracking()
|
/arkcompiler/ets_runtime/ecmascript/dfx/hprof/tests/ |
H A D | heap_dump_test.cpp | 557 bool StartHeapTracking(double timeInterval, bool isVmMode = true, Stream *stream = nullptr, 560 return profiler_->StartHeapTracking(timeInterval, isVmMode, stream, traceAllocation, newThread);
|
Completed in 8 milliseconds