Home
last modified time | relevance | path

Searched refs:tid_ (Results 1 – 23 of 23) sorted by relevance

/developtools/smartperf_host/trace_streamer/src/filter/
Dapp_start_filter.cpp59 … itorSecond->second->tid_, in CaclRsDataByPid()
70 … itorSecond->second->tid_, in CaclRsDataByPid()
87 tid = item.second.at(UI_ABILITY_LAUNCHING)->tid_; in UpdatePidByNameIndex()
92 tid = threadData[i].tid_; in UpdatePidByNameIndex()
98 itemSecond.second->tid_ = tid; in UpdatePidByNameIndex()
121 itorSecond->second->ipid_, itorSecond->second->tid_, itorSecond->second->callid_, in AppendData()
208 …std::make_unique<APPStartupData>(callId, thread->internalPid_, thread->tid_, startTime, INVALID_UI… in ProcAbilityLaunchData()
222 auto tid = threadData[callId].tid_; in ProcForegroundData()
270 auto tid = threadData[callId].tid_; in ParserSoInitalization()
280 … threadData[callId].internalPid_, threadData[callId].tid_, callId, startTime, endTime, in ParserSoInitalization()
Dapp_start_filter.h43 : callid_(callid), ipid_(ipid), tid_(tid), startTime_(startTime), endTime_(endTime) in APPStartupData()
48 uint32_t tid_; variable
Dcpu_filter.cpp207 thread->tid_, traceDataCache_->GetDataFromDict(thread->nameIndex_), thread->startT_); in Finish()
223 traceDataCache_->GetThreadStateData()->UpdateTidAndPid(i, thread->tid_, process->pid_); in Finish()
/developtools/hiperf/include/
Dreport.h114 pid_t tid_ = 0; variable
131 tid_(tid), in ReportItem()
145 tid_(tid), in ReportItem()
169 return StringPrintf("%d:%d:%s-%s(%s):%zu i:%llu", pid_, tid_, comm_.data(), func_.data(), in ToDebugString()
211 if (a.tid_ != b.tid_) { in CompareTid()
212 return (a.tid_ > b.tid_) ? 1 : -1; in CompareTid()
219 return StringPrintf(format.c_str(), len, a.tid_); in GetTid()
276 return (comm_ == b.comm_) && (pid_ == b.pid_) && (tid_ == b.tid_) && (func_ == b.func_) && in Same()
Dvirtual_thread.h48 tid_(pid), in VirtualThread()
59 tid_(tid), in VirtualThread()
72 pid_t tid_; variable
Dreport_json_file.h291 pid_t tid_ = 0; member
302 OutputJsonPair(output, "tid", tid_, true); in OutputJson()
312 ReportThreadItem(pid_t id) : tid_(id), callNode(-1), callNodeReverse(-1) {} in ReportThreadItem()
/developtools/smartperf_host/trace_streamer/test/unittest/filter/
Dprocess_filter_test.cpp57 EXPECT_TRUE(thread->tid_ == tid0);
60 EXPECT_TRUE(thread->tid_ == tid1);
187 EXPECT_TRUE(thread->tid_ == tid);
191 EXPECT_TRUE(thread->tid_ == tid2);
224 EXPECT_TRUE(thread->tid_ == tid);
247 EXPECT_TRUE(thread->tid_ == tid2);
275 EXPECT_TRUE(thread->tid_ == tid3);
/developtools/smartperf_host/trace_streamer/src/table/ftrace/
Dthread_table.cpp98 if (threadQueue[*i].tid_ != value) { in FilterTid()
106 if (threadQueue[i].tid_ == value) { in FilterTid()
117 if (threadQueue[*i].tid_ == value) { in FilterTid()
125 if (threadQueue[i].tid_ != value) { in FilterTid()
313 SetTypeColumnInt64(thread.tid_, INVALID_UINT32); in Column()
336 sqlite3_result_int(context_, thread.tid_ == process.pid_); in Column()
/developtools/profiler/hiebpf/include/
Dbpf_event_receiver.h47 __u32 tid_; member
64 __u32 tid_; member
81 __u32 tid_; member
97 __u32 tid_; member
/developtools/profiler/device/plugins/native_daemon/src/
Dcall_stack.cpp233 HLOGW("no debug info found for thread %d:%s", unwindInfoPtr->thread.tid_, in FindUnwindTable()
252 HLOGW("no symbols file found for thread %d:%s", unwindInfoPtr->thread.tid_, in FindProcInfo()
257 unwindInfoPtr->thread.tid_, unwindInfoPtr->thread.name_.c_str()); in FindProcInfo()
419 if (unwindAddrSpaceMap_.count(thread.tid_) == 0) { in DoUnwind()
422 unwindAddrSpaceMap_.emplace(thread.tid_, addr_space); in DoUnwind()
426 addr_space = unwindAddrSpaceMap_.at(thread.tid_); in DoUnwind()
602 HLOGW("no symbols file found for thread %d:%s", unwindInfoPtr->thread.tid_, in FindUnwindTable()
607 unwindInfoPtr->thread.tid_, unwindInfoPtr->thread.name_.c_str()); in FindUnwindTable()
Dvirtual_thread.cpp94 : pid_(pid), tid_(tid), symbolsFiles_(symbolsFiles), virtualruntime_(runtime) in VirtualThread()
/developtools/hiperf/src/
Dcallstack.cpp254 HLOGW("no debug info found for thread %d:%s", unwindInfoPtr->thread.tid_, in FindUnwindTable()
272 HLOGW("no symbols file found for thread %d:%s", unwindInfoPtr->thread.tid_, in FindProcInfo()
277 unwindInfoPtr->thread.tid_, unwindInfoPtr->thread.name_.c_str()); in FindProcInfo()
450 if (unwindAddrSpaceMap_.count(thread.tid_) == 0) { in DoUnwind()
456 unwindAddrSpaceMap_.emplace(thread.tid_, addr_space); in DoUnwind()
460 addr_space = unwindAddrSpaceMap_.at(thread.tid_); in DoUnwind()
760 HLOGW("no symbols file found for thread %d:%s", unwindInfoPtr->thread.tid_, in FindUnwindTable()
765 unwindInfoPtr->thread.tid_, unwindInfoPtr->thread.name_.c_str()); in FindUnwindTable()
Dreport_json_file.cpp272 if (thread.pid_ == thread.tid_) { in OutputJsonRuntimeInfo()
276 jsonThreads.emplace(std::to_string(thread.tid_), thread.name_); in OutputJsonRuntimeInfo()
Dvirtual_thread.cpp376 pid_, tid_, memMaps_.size(), map->name.c_str(), map->begin, map->end, map->offset); in CreateMapItem()
Dvirtual_runtime.cpp166 std::make_unique<PerfRecordMmap2>(false, thread.pid_, thread.tid_, map); in CreateThread()
168 thread.pid_, thread.tid_, thread.name_.c_str(), map->name.c_str(), in CreateThread()
581 callstack_.ExpandCallStack(thread.tid_, recordSample.callFrames_, callstackMergeLevel_); in UnwindFromRecord()
/developtools/profiler/hiebpf/src/
Dbpf_event_receiver.cpp291 item->tid_ = cmplt_event->pid; in EncodeFSTraceEvent()
327 item->tid_ = cmplt_event->pid; in EncodePFTraceEvent()
363 item->tid_ = cmplt_event->start_event.pid; in EncodeBIOTraceEvent()
397 item->tid_ = cmplt_event->pid; in EncodeSTRTraceEvent()
/developtools/profiler/device/plugins/native_daemon/include/
Dvirtual_thread.h87 pid_t tid_ {0};
/developtools/smartperf_host/trace_streamer/src/trace_data/trace_stdtype/
Dcommon_stdtype.h32 explicit Thread(uint32_t t) : tid_(t) {} in Thread()
34 uint32_t tid_ = 0; variable
/developtools/smartperf_host/trace_streamer/src/trace_data/
Dtrace_data_cache.cpp416 auto hookTaskId = internalThreadsData_[itid].tid_; in ExportHookDataReadableText()
524 auto fileSysTaskId = internalThreadsData_[fileSamplingTableData_.Itids()[row]].tid_; in ExportEbpfFileSystemReadableText()
554 auto pagedMemTaskId = internalThreadsData_[pagedMemorySampleData_.Itids()[row]].tid_; in ExportEbpfPagedMemReadableText()
584 auto bioTaskId = internalThreadsData_[bioLatencySampleData_.Itids()[row]].tid_; in ExportEbpfBIOReadableText()
/developtools/profiler/device/plugins/native_daemon/test/unittest/common/native/
Dvirtual_runtime_test.cpp192 printf("pid %d tid %d\n", pair.second.pid_, pair.second.tid_);
/developtools/hiperf/test/unittest/common/native/
Dreport_json_file_test.cpp423 thread.tid_ = 2;
493 EXPECT_EQ(configIt->second.processes_.at(2).threads_.at(3).tid_, 3);
Dreport_test.cpp288 GetNumberTest(a, ReportItem::GetTid, a.tid_, std::to_string(a.tid_).length());
Dvirtual_runtime_test.cpp320 printf("pid %d tid %d\n", pair.second.pid_, pair.second.tid_);