Home
last modified time | relevance | path

Searched refs:cpus (Results 1 – 25 of 72) sorted by relevance

123

/developtools/smartperf_host/ide/src/trace/database/sql/
DPerf.sql.ts49 cpus: Array<number>,
69 if (cpus.length != 0 || processes.length != 0 || threads.length != 0) {
70 let arg1 = cpus.length > 0 ? `or core in (${cpus.join(',')}) ` : '';
85 cpus: Array<number>,
95 if (cpus.length != 0 || processes.length != 0 || threads.length != 0) {
96 let arg1 = cpus.length > 0 ? `or A.cpu_id in (${cpus.join(',')}) ` : '';
275 cpus: Array<number>,
289 if (cpus.length > 0) {
290 str = ` and A.cpu_id in (${cpus.join(',')})`;
292 if (cpus.length > 0 && processes.length > 0) {
[all …]
DCpu.sql.ts96 export const getTabCpuUsage = (cpus: Array<number>, leftNs: number, rightNs: number): Promise<Array…
116 cpu in (${cpus.join(',')})
126 export const getTabCpuFreq = (cpus: Array<number>, leftNs: number, rightNs: number): Promise<Array<…
144 cpu in (${cpus.join(',')})
202 export const getTabCpuByProcess = (cpus: Array<number>, leftNS: number, rightNS: number) =>
216 B.cpu in (${cpus.join(',')})
225 export const getTabCpuByThread = (cpus: Array<number>, leftNS: number, rightNS: number) =>
240 TS.cpu in (${cpus.join(',')})
627 export const queryWakeupListPriority = (itid: number[], ts: number[], cpus: number[]): Promise<Arra…
632 from sched_slice,trace_range where cpu in (${cpus.join(',')})
DProcessThread.sql.ts218 cpus: number[],
227 ${cpus.length > 0 ? `and (B.cpu is null or B.cpu in (${cpus.join(',')}))` : ''}
/developtools/ace_ets2bundle/compiler/test/ark_compiler_ut/utils/
Dutils.ts22 export function cpus() { function
23 return os.cpus().length < 16 ? os.cpus().length : 16;
/developtools/smartperf_host/ide/src/trace/component/trace/sheet/cpu/
DTabPaneSPT.ts41 this.getDataBySPT(sptValue.leftNs, sptValue.rightNs, sptValue.cpus);
55 getDataBySPT(leftNs: number, rightNs: number, cpus: Array<number>) {
60 { leftNs: leftNs, rightNs: rightNs, cpus: cpus },
DTabPanePTS.ts37 this.getDataByPTS(ptsValue.leftNs, ptsValue.rightNs, ptsValue.cpus);
46 getDataByPTS(ptsLeftNs: number, ptsRightNs: number, cpus: Array<number>) {
51 { leftNs: ptsLeftNs, rightNs: ptsRightNs, cpus: cpus },
DTabPaneCpuByThread.ts53 this.cpuByThreadTbl!.innerHTML = this.getTableColumns(cpuByThreadValue.cpus);
64 …getTabCpuByThread(cpuByThreadValue.cpus, cpuByThreadValue.leftNs, cpuByThreadValue.rightNs).then((…
121 for (let i of cpuByThreadValue.cpus) {
152 getTableColumns(cpus: Array<number>) {
154 let cpuByThreadList = cpus.sort((cpuByThreadA, cpuByThreadB) => cpuByThreadA - cpuByThreadB);
DTabPaneCpuUsage.ts39 getTabCpuUsage(cpuUsageValue.cpus, cpuUsageValue.leftNs, cpuUsageValue.rightNs),
40 getTabCpuFreq(cpuUsageValue.cpus, cpuUsageValue.leftNs, cpuUsageValue.rightNs),
47 for (let cpu of cpuUsageValue.cpus) {
/developtools/smartperf_host/ide/test/trace/component/trace/sheet/cpu/
DTabPaneCpuByThread.test.ts59 let a = { rightNs: 1, cpus: [11, 12, 13] };
66 let a = { rightNs: 1, cpus: [11, 12, 13] };
DTabPaneCpuUsage.test.ts41 cpus: [1, 0],
195 cpus: [2],
DTabPaneBoxChild.test.ts55 cpus: [],
/developtools/smartperf_host/ide/test/trace/component/trace/sheet/native-memory/
DTabPaneNMStatstics.test.ts83 cpus: [],
147 cpus: [3],
211 cpus: [1,3],
275 cpus: [],
338 cpus: [0],
/developtools/smartperf_host/ide/test/trace/component/trace/sheet/ark-ts/
DTabPaneJsCpu.test.ts46 cpus: [],
70 cpus: [],
/developtools/smartperf_host/ide/src/trace/database/logic-worker/
DProcedureLogicWorkerSPT.ts64 results: this.getPTSData(params.leftNs, params.rightNs, params.cpus),
71 results: this.getSPTData(params.leftNs, params.rightNs, params.cpus),
121 private getPTSData(ptsLeftNs: number, ptsRightNs: number, cpus: Array<number>) {
125 (it.cpu === null || it.cpu === undefined || cpus.includes(it.cpu))
215 private getSPTData(sptLeftNs: number, sptRightNs: number, cpus: Array<number>): any {
219 (it.cpu === null || it.cpu === undefined || cpus.includes(it.cpu))
/developtools/smartperf_host/ide/test/trace/component/trace/base/
DTraceSheet.test.ts35 cpus: { length: 1 },
56 cpus: { length: 1 },
/developtools/ace_ets2bundle/compiler/test/ark_compiler_ut/module/
Dmodule_hotfix_mode.test.ts35 import { cpus } from '../utils/utils';
38 const fileThreads: number = cpus();
/developtools/smartperf_host/ide/src/trace/component/trace/base/
DTraceSheetConfig.ts150 require: (param: SelectionParam) => param.cpus.length > 0,
155 require: (param: SelectionParam) => param.cpus.length > 0,
160 require: (param: SelectionParam) => param.cpus.length > 0,
165 require: (param: SelectionParam) => param.cpus.length > 0,
170 require: (param: SelectionParam) => param.cpus.length > 0,
621 require: (param: SelectionParam) => param.cpus.length > 0,
/developtools/smartperf_host/ide/test/trace/bean/
DBoxSelection.test.ts26 cpus: 1,
41 cpus: expect.any(Number),
/developtools/hiperf/interfaces/kits/js/
D@ohos.hiperf.d.ts109 function setSelectCpus(cpus: number[]): boolean;
/developtools/smartperf_host/ide/test/trace/component/trace/sheet/process/
DTabPaneSlices.test.ts67 cpus: [],
DTabPaneThreadUsage.test.ts89 cpus: [], variable
/developtools/smartperf_host/ide/test/trace/component/trace/sheet/energy/
DTabPaneEnergyAnomaly.test.ts85 cpus: [],
DTabPanePowerBattery.test.ts56 cpus: [0],
DTabPanePowerDetails.test.ts82 cpus: [3],
/developtools/smartperf_host/ide/test/trace/component/trace/sheet/gpufreq/
DtabPaneGpufreqUsage.test.ts56 cpus: [],

123