Lines Matching refs:threadInfo
366 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) {
506 this.threadInfo.eventCount));
717 let threadInfo = processInfo.threads[indexes[1]];
718 let lib = threadInfo.libs[indexes[2]];
720 FunctionTab.showFunction(eventInfo, processInfo, threadInfo, lib, func);
863 static showFunction(eventInfo, processInfo, threadInfo, lib, func) { argument
870 .then(() => tab.setFunction(eventInfo, processInfo, threadInfo, lib, func));
882 setFunction(eventInfo, processInfo, threadInfo, lib, func) { argument
885 this.threadInfo = threadInfo;
922 countForThread: this.threadInfo.eventCount};
925 getNodesMatchingFuncId(this.threadInfo.g), false);
930 getNodesMatchingFuncId(this.threadInfo.rg), true);
957 let threadName = getThreadName(this.threadInfo.tid);