Lines Matching refs:ctr
116 var ctr = this.model_.getOrCreateProcess(event.pid)
119 if (ctr.numSeries == 0) {
121 ctr.seriesNames.push(seriesName);
122 ctr.seriesColors.push(
123 tracing.getStringColorId(ctr.name + '.' + seriesName));
125 if (ctr.numSeries == 0) {
129 delete ctr.parent.counters[ctr.name];
135 ctr.timestamps.push(event.ts / 1000);
136 for (var i = 0; i < ctr.numSeries; i++) {
137 var seriesName = ctr.seriesNames[i];
139 ctr.samples.push(0);
142 ctr.samples.push(event.args[seriesName]);