Home
last modified time | relevance | path

Searched refs:GetThreadId (Results 1 – 12 of 12) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/mem/
Dconcurrent_sweeper.cpp37 … std::make_unique<SweeperTask>(heap_->GetJSThread()->GetThreadId(), this, OLD_SPACE)); in PostTask()
40 std::make_unique<SweeperTask>(heap_->GetJSThread()->GetThreadId(), this, NON_MOVABLE)); in PostTask()
42 … std::make_unique<SweeperTask>(heap_->GetJSThread()->GetThreadId(), this, MACHINE_CODE_SPACE)); in PostTask()
Dconcurrent_marker.cpp65 …rentTaskpool()->PostTask(std::make_unique<MarkerTask>(heap_->GetJSThread()->GetThreadId(), heap_)); in Mark()
Dparallel_evacuator.cpp71 std::make_unique<EvacuationTask>(heap_->GetJSThread()->GetThreadId(), this)); in EvacuateSpace()
220 std::make_unique<UpdateReferenceTask>(heap_->GetJSThread()->GetThreadId(), this)); in UpdateReference()
Dheap.cpp268 std::make_unique<AsyncClearTask>(GetJSThread()->GetThreadId(), this, gcType)); in Resume()
302 Taskpool::GetCurrentTaskpool()->Destroy(GetJSThread()->GetThreadId()); in DisableParallelGC()
1000 std::make_unique<ParallelGCTask>(GetJSThread()->GetThreadId(), this, gcTask)); in PostParallelGCTask()
/arkcompiler/ets_runtime/ecmascript/napi/
Ddfx_jsnapi.cpp334 + std::to_string(thread->GetThreadId()) + "_" in CpuProfilerSamplingAnyTime()
506 if (hostVm->GetAssociatedJSThread()->GetThreadId() == tid) { in BuildJsStackInfoList()
578 if (hostVm->GetAssociatedJSThread()->GetThreadId() == tid) { in ResumeVMById()
587 if (hostVm->GetAssociatedJSThread()->GetThreadId() == tid) { in SuspendVMById()
/arkcompiler/ets_runtime/ecmascript/
Decma_vm.cpp237 Taskpool::GetCurrentTaskpool()->Destroy(thread_->GetThreadId()); in ~EcmaVM()
343 + std::to_string(thread_->GetThreadId()) + ".cpuprofile"; in CheckStartCpuProfiler()
620 auto tid = thread->GetThreadId(); in WorkersetInfo()
645 auto tid = thread->GetThreadId(); in DeleteWorker()
Decma_vm.h163 …thread_->GetThreadId() != JSThread::GetCurrentThreadId() && !thread_->IsCrossThreadExecutionEnable… in CheckThread()
165 << " thread:" << thread_->GetThreadId() in CheckThread()
Decma_macros.h558 ASSERT((vm)->GetJSThread()->GetThreadId() == JSThread::GetCurrentThreadId()); \
Djs_thread.h393 ThreadId GetThreadId() const in GetThreadId() function
/arkcompiler/ets_runtime/ecmascript/dfx/cpu_profiler/
Dcpu_profiler.cpp87 … std::make_unique<SamplingProcessor>(vm_->GetJSThread()->GetThreadId(), generator_, interval_)); in StartCpuProfilerForInfo()
147 … std::make_unique<SamplingProcessor>(vm_->GetJSThread()->GetThreadId(), generator_, interval_)); in StartCpuProfilerForFile()
/arkcompiler/ets_runtime/ecmascript/napi/test/
Ddfx_jsnapi_tests.cpp322 uint32_t hostTid = vm_->GetJSThread()->GetThreadId(); in HWTEST_F_L0()
Djsnapi_tests.cpp93 EXPECT_TRUE(vm->GetJSThread()->GetThreadId() != JSThread::GetCurrentThreadId()); in ThreadCheck()
106 EXPECT_TRUE(vm_->GetJSThread()->GetThreadId() == JSThread::GetCurrentThreadId()); in HWTEST_F_L0()