Searched refs:nstid (Results 1 – 4 of 4) sorted by relevance
/base/hiviewdfx/faultloggerd/test/unittest/procinfo/ |
D | procinfo_test.cpp | 83 int nstid = tids[i]; variable 84 TidToNstid(getpid(), tids[i], nstid); 85 ASSERT_EQ(nstid, nstids[i]); 99 int nstid = -1; variable 100 ASSERT_TRUE(TidToNstid(getpid(), gettid(), nstid)); 101 ASSERT_EQ(gettid(), nstid);
|
/base/hiviewdfx/faultloggerd/interfaces/innerkits/backtrace/ |
D | catchframe_local.cpp | 141 int nstid = tid; in CatchFrame() local 143 TidToNstid(pid_, tid, nstid); in CatchFrame() 145 if (!IsThreadInPid(pid_, nstid)) { in CatchFrame() 150 return CatchFrameLocalTid(nstid, frames, releaseThread); in CatchFrame()
|
/base/hiviewdfx/faultloggerd/interfaces/innerkits/procinfo/ |
D | procinfo.cpp | 99 bool TidToNstid(const int pid, const int tid, int& nstid) in TidToNstid() argument 110 nstid = procInfo.nsPid; in TidToNstid() 166 pid_t nstid = tid; in GetTidsByPid() local 167 TidToNstid(pid, tid, nstid); in GetTidsByPid() 168 nstids.push_back(nstid); in GetTidsByPid()
|
/base/hiviewdfx/faultloggerd/interfaces/innerkits/procinfo/include/ |
D | procinfo.h | 68 bool TidToNstid(const int pid, const int tid, int& nstid);
|