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()
212 const ThreadInfo& threadInfo = mThreadMap.valueAt(i); in printInternal() local
213 const String8& threadName = threadInfo.threadName; in printInternal()
218 threadInfo.callStack.print(csPrinter); in printInternal()
/system/extras/simpleperf/scripts/
Dreport_html.js372 this.threadInfo = null;
393 if (this.threadInfo) {
407 this.threadInfo = null;
421 this.threadInfo = this.processInfo.threads[selectedItem.row];
423 this.libInfo = this.threadInfo.libs[selectedItem.row];
448 if (this.threadInfo) {
449 rows.push(['Thread: ' + getThreadName(this.threadInfo.tid),
450 this.getSampleWeight(this.threadInfo.eventCount)]);
508 title = 'Libraries in thread ' + getThreadName(this.threadInfo.tid);
510 for (let lib of this.threadInfo.libs) {
[all …]