Home | History | Annotate | Download | only in doc

Lines Matching full:threadinfo

240         this.threadInfo = null;
261 if (this.threadInfo) {
275 this.threadInfo = null;
289 this.threadInfo = this.processInfo.threads[selectedItem.row];
291 this.libInfo = this.threadInfo.libs[selectedItem.row];
316 if (this.threadInfo) {
317 rows.push(['Thread: ' + getThreadName(this.threadInfo.tid),
318 this.getSampleWeight(this.threadInfo.eventCount)]);
377 title = 'Libraries in thread ' + getThreadName(this.threadInfo.tid);
379 for (let lib of this.threadInfo.libs) {
381 this.threadInfo.eventCount));
549 let threadInfo = processInfo.threads[j];
550 let threadName = getThreadName(threadInfo.tid);
551 for (let k = 0; k < threadInfo.libs.length; ++k) {
552 let lib = threadInfo.libs[k];
583 let threadInfo = processInfo.threads[indexes[1]];
584 let lib = threadInfo.libs[indexes[2]];
586 FunctionTab.showFunction(eventInfo, processInfo, threadInfo, lib, func);
612 static showFunction(eventInfo, processInfo, threadInfo, lib, func) {
618 tab.setFunction(eventInfo, processInfo, threadInfo, lib, func);
630 setFunction(eventInfo, processInfo, threadInfo, lib, func) {
633 this.threadInfo = threadInfo;
653 this.processInfo, this.threadInfo, () => this.onSampleWeightChange());
685 let threadName = getThreadName(this.threadInfo.tid);
740 constructor(divContainer, eventInfo, processInfo, threadInfo, onSelectChange) {
746 this.eventCountForThread = threadInfo.eventCount;