/arkcompiler/runtime_core/libpandabase/tests/ |
D | logger_test.cpp | 64 uint32_t tid = os::thread::GetCurrentThreadId(); variable 71 tid, tid, tid); 148 uint32_t tid = os::thread::GetCurrentThreadId(); variable 149 std::string res = helpers::string::Format("[TID %06x] E/compiler: c\n", tid); 167 uint32_t tid = os::thread::GetCurrentThreadId(); variable 171 tid, tid); 190 uint32_t tid = os::thread::GetCurrentThreadId(); variable 191 std::string res = helpers::string::Format("[TID %06x] E/common: c\n", tid); 235 uint32_t tid = os::thread::GetCurrentThreadId(); variable 239 tid, tid); [all …]
|
/arkcompiler/toolchain/test/fuzztest/base/ptevents/paused/baseptspausedsethitbreakpoints_fuzzer/ |
D | baseptspausedsethitbreakpoints_fuzzer.cpp | 34 int tid = 2; in BasePtsPausedSetHitBreakpointsFuzzTest() local 36 std::vector<BreakpointId> breakpointid_(tid); in BasePtsPausedSetHitBreakpointsFuzzTest() 37 for (int i = 0; i < tid; i++) { in BasePtsPausedSetHitBreakpointsFuzzTest()
|
/arkcompiler/runtime_core/libpandabase/os/ |
D | thread.h | 123 native_handle_type tid; 125 pthread_t tid; 136 pthread_create(&tid, nullptr, 140 return tid; 142 return reinterpret_cast<native_handle_type>(tid);
|
/arkcompiler/ets_runtime/ecmascript/dfx/cpu_profiler/ |
D | sampling_processor.cpp | 42 pthread_t tid = pthread_self(); in Run() local 43 pthread_setname_np(tid, "SamplingThread"); in Run() 77 pthread_setname_np(tid, "GC_WorkerThread"); in Run()
|
D | cpu_profiler.cpp | 241 + std::to_string(currentProcessInfo.tid) + ",\"ts\":" in SetProfileStart() 248 + std::to_string(currentProcessInfo.tid) + ",\"ts\":" in SetProfileStart() 385 pthread_t tid = static_cast<pthread_t>(syscall(SYS_gettid)); in GetStackSignalHandler() local 386 const EcmaVM *vm = profilerMap_[tid]; in GetStackSignalHandler()
|
D | cpu_profiler.h | 37 pthread_t tid = 0; member
|
D | samples_record.cpp | 32 int tid = syscall(SYS_gettid); in SamplesRecord() local 33 if (tid != -1) { in SamplesRecord() 34 profileInfo_->tid = static_cast<uint64_t>(tid); in SamplesRecord() 151 + std::to_string(profileInfo_->tid) + ",\"startTime\":" in StringifySampleData()
|
D | samples_record.h | 58 uint64_t tid = 0; member
|
/arkcompiler/ets_runtime/ecmascript/ |
D | ecma_vm.cpp | 626 auto tid = thread->GetThreadId(); in WorkersetInfo() local 627 if (tid != 0) { in WorkersetInfo() 628 workerList_.emplace(tid, workerVm); in WorkersetInfo() 633 EcmaVM *EcmaVM::GetWorkerVm(uint32_t tid) in GetWorkerVm() argument 638 auto iter = workerList_.find(tid); in GetWorkerVm() 651 auto tid = thread->GetThreadId(); in DeleteWorker() local 652 if (tid == 0) { in DeleteWorker() 655 auto iter = workerList_.find(tid); in DeleteWorker() 665 bool EcmaVM::SuspendWorkerVm(uint32_t tid) in SuspendWorkerVm() argument 669 auto iter = workerList_.find(tid); in SuspendWorkerVm() [all …]
|
D | ecma_vm.h | 280 EcmaVM *GetWorkerVm(uint32_t tid); 284 bool SuspendWorkerVm(uint32_t tid); 286 void ResumeWorkerVm(uint32_t tid);
|
/arkcompiler/toolchain/inspector/ |
D | inspector.cpp | 159 pthread_t tid; in InitializeInspector() local 160 if (pthread_create(&tid, nullptr, &HandleClient, static_cast<void *>( in InitializeInspector() 165 newInspector->websocketServer_->tid_ = tid; in InitializeInspector() 248 debuggerPostTask_([tid = tid_, vm = vm_] { in OnMessage() 249 if (tid != pthread_self()) { in OnMessage()
|
D | connect_inspector.cpp | 107 pthread_t tid; in StartServer() local 108 if (pthread_create(&tid, nullptr, &HandleDebugManager, in StartServer()
|
/arkcompiler/ets_runtime/ecmascript/napi/include/ |
D | dfx_jsnapi.h | 78 …static bool BuildJsStackInfoList(const EcmaVM *hostVm, uint32_t tid, std::vector<JsFrameInfo>& jsF… 108 static void ResumeVMById(EcmaVM *vm, uint32_t tid); 109 static bool SuspendVMById(EcmaVM *vm, uint32_t tid);
|
/arkcompiler/ets_runtime/ecmascript/napi/ |
D | dfx_jsnapi.cpp | 503 bool DFXJSNApi::BuildJsStackInfoList(const EcmaVM *hostVm, uint32_t tid, std::vector<JsFrameInfo>& … in BuildJsStackInfoList() argument 506 if (hostVm->GetAssociatedJSThread()->GetThreadId() == tid) { in BuildJsStackInfoList() 509 vm = const_cast<EcmaVM*>(hostVm)->GetWorkerVm(tid); in BuildJsStackInfoList() 576 void DFXJSNApi::ResumeVMById(EcmaVM *hostVm, uint32_t tid) in ResumeVMById() argument 578 if (hostVm->GetAssociatedJSThread()->GetThreadId() == tid) { in ResumeVMById() 581 hostVm->ResumeWorkerVm(tid); in ResumeVMById() 585 bool DFXJSNApi::SuspendVMById(EcmaVM *hostVm, uint32_t tid) in SuspendVMById() argument 587 if (hostVm->GetAssociatedJSThread()->GetThreadId() == tid) { in SuspendVMById() 590 return hostVm->SuspendWorkerVm(tid); in SuspendVMById()
|
/arkcompiler/runtime_core/compiler/tests/ |
D | aot_test.cpp | 173 uint32_t tid = os::thread::GetCurrentThreadId(); in TEST_F() local 174 std::string tmpfile = helpers::string::Format("/tmp/tmpfile_%04x.pn", tid); in TEST_F() 517 uint32_t tid = os::thread::GetCurrentThreadId(); in TEST_F() local 518 std::string tmpfile = helpers::string::Format("test.an", tid); in TEST_F()
|
/arkcompiler/toolchain/tooling/base/ |
D | pt_types.cpp | 2500 int64_t tid; in Create() local 2501 ret = params.GetInt64("tid", &tid); in Create() 2503 profile->tid_ = tid; in Create() 2631 profile->SetTid(static_cast<int64_t>(profileInfo.tid)); in FromProfileInfo()
|
D | pt_types.h | 2100 Profile &SetTid(int64_t tid) in SetTid() argument 2102 tid_ = tid; in SetTid()
|
/arkcompiler/toolchain/tooling/test/ |
D | debugger_types_test.cpp | 2167 …"tid":1000, "startTime":10, "endTime":25, "gcTime":25, "cInterpreterTime":25, "asmInterpreterTime"… in HWTEST_F_L0() 2201 …"tid":1000, "startTime":10, "endTime":25, "gcTime":25, "cInterpreterTime":25, "asmInterpreterTime"… in HWTEST_F_L0()
|
/arkcompiler/ets_frontend/legacy_bin/api8/src/ |
D | index.js | 2 …ypes"===r||(e.performance.mark("beginTracing"),n.writeSync(l,',\n{"pid":1,"tid":1,"ph":"'+t+'","ca… property
|