Lines Matching refs:res
147 … this.queryLogicWorker('scheduling-Thread Freq', 'query Thread Top 20 Frequency Time:', (res) => {
151 res === undefined ||
152 res.length === 0;
153 (res as any[]).map((it: any, index: number) => {
156 this.frequencyThreadData = res;
163 this.frequencyThreadTbl!.recycleDataSource = res;
168 data: this.getPieChartData(res),
203 getPieChartData(res: any[]) {
204 if (res.length > 20) {
213 for (let i = 0; i < res.length; i++) {
215 pieChartArr.push(res[i]);
217 other.time += res[i].time;
219 other.totalDur = res[i].totalDur;
226 return res;
236 queryLogicWorker(option: string, log: string, handler: (res: any) => void) {