Lines Matching defs:nstids
61 std::vector<int> nstids;
62 if (!GetTidsByPid(processInfo_.pid, tids, nstids)) {
66 for (size_t i = 0; i < nstids.size(); ++i) {
67 if ((recycleTid_ > 0) && (nstids[i] == static_cast<int>(recycleTid_))) {
68 DFXLOGD("skip recycle thread:%{public}d.", nstids[i]);
72 if ((keyThread_ != nullptr) && nstids[i] == keyThread_->threadInfo_.nsTid) {
73 DFXLOGD("skip key thread:%{public}d.", nstids[i]);
77 auto thread = DfxThread::Create(processInfo_.pid, tids[i], nstids[i]);
94 std::vector<int> nstids;
95 if (!GetTidsByPid(processInfo_.pid, tids, nstids)) {
98 for (size_t i = 0; i < nstids.size(); ++i) {
99 kvThreads_[nstids[i]] = tids[i];