Lines Matching refs:eventInfo
187 function isClockEvent(eventInfo) { argument
188 return eventInfo.eventName.includes('task-clock') ||
189 eventInfo.eventName.includes('cpu-clock');
362 constructor(divContainer, eventInfo) { argument
364 this.eventInfo = eventInfo;
374 if (isClockEvent(this.eventInfo)) {
413 this.processInfo = this.eventInfo.processes[selectedItem.row];
436 rows.push(['Event Type: ' + this.eventInfo.eventName,
437 this.getSampleWeight(this.eventInfo.eventCount)]);
488 title = 'Processes in event type ' + this.eventInfo.eventName;
490 for (let process of this.eventInfo.processes) {
492 this.eventInfo.eventCount));
543 let views = createViewsForEvents(this.div, (div, eventInfo) => {
544 return new ChartView(div, eventInfo);
564 views = createViewsForEvents(this.div, (div, eventInfo) => {
565 return new SampleTableView(div, eventInfo);
577 constructor(divContainer, eventInfo, onSelectChange) { argument
581 if (isClockEvent(eventInfo)) {
590 this.eventCount = eventInfo.eventCount;
636 constructor(divContainer, eventInfo) { argument
639 this.eventInfo = eventInfo;
649 this.div, this.eventInfo, () => this.onSampleWeightChange());
657 let eventInfo = this.eventInfo;
676 for (let [i, process] of eventInfo.processes.entries()) {
716 let processInfo = eventInfo.processes[indexes[0]];
720 FunctionTab.showFunction(eventInfo, processInfo, threadInfo, lib, func);
746 views = createViewsForEvents(this.div, (div, eventInfo) => {
747 return new FlameGraphViewList(div, eventInfo);
759 constructor(div, eventInfo) { argument
761 this.eventInfo = eventInfo;
770 this.selectorView = new SampleWeightSelectorView(this.div, this.eventInfo,
789 if (pId == this.eventInfo.processes.length) {
792 let process = this.eventInfo.processes[pId];
811 if (pId < this.eventInfo.processes.length) {
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
883 this.eventInfo = eventInfo;
903 this.selectorView = new SampleWeightSelectorView(this.div, this.eventInfo,
955 let eventName = this.eventInfo.eventName;
1012 constructor(divContainer, eventInfo, onSelectChange) { argument
1020 if (isClockEvent(eventInfo)) {
1050 this.countForAllProcesses = eventInfo.eventCount;