Home
last modified time | relevance | path

Searched refs:threadInfo (Results 1 – 2 of 2) sorted by relevance

/system/core/libutils/
DProcessCallStack.cpp173 ThreadInfo& threadInfo = mThreadMap.editValueAt(static_cast<size_t>(idx)); in update() local
182 threadInfo.callStack.update(ignoreDepth, tid); in update()
185 threadInfo.threadName = getThreadName(tid); in update()
188 __FUNCTION__, tid, threadInfo.callStack.size()); in update()
213 const ThreadInfo& threadInfo = mThreadMap.valueAt(i); in printInternal() local
214 const String8& threadName = threadInfo.threadName; in printInternal()
219 threadInfo.callStack.print(csPrinter); in printInternal()
/system/extras/simpleperf/scripts/
Dreport_html.js366 this.threadInfo = null;
387 if (this.threadInfo) {
401 this.threadInfo = null;
415 this.threadInfo = this.processInfo.threads[selectedItem.row];
417 this.libInfo = this.threadInfo.libs[selectedItem.row];
442 if (this.threadInfo) {
443 rows.push(['Thread: ' + getThreadName(this.threadInfo.tid),
444 this.getSampleWeight(this.threadInfo.eventCount)]);
502 title = 'Libraries in thread ' + getThreadName(this.threadInfo.tid);
504 for (let lib of this.threadInfo.libs) {
[all …]