Home
last modified time | relevance | path

Searched refs:dataListCache (Results 1 – 25 of 60) sorted by relevance

123

/developtools/smartperf_host/ide/src/trace/database/ui-worker/
DProcedureWorkerSnapshot.ts30 let filter = row.dataListCache;
42 drawLoadingFrame(req.context, row.dataListCache, row);
124 gpuDumpTotalRow!.dataListCache
138 gpuDumpWindowRow!.dataListCache
147 sp.traceSheetEL?.displaySmapsData(SnapshotStruct.selectSnapshotStruct!, smapsRow!.dataListCache);
154 sp.traceSheetEL?.displayShmData(SnapshotStruct.selectSnapshotStruct!, shmRow!.dataListCache);
163 …?.displayPurgTotalAbilityData(SnapshotStruct.hoverSnapshotStruct!, totalAbilityRow!.dataListCache);
172 …etEL?.displayPurgPinAbilityData(SnapshotStruct.hoverSnapshotStruct!, pinAbilityRow!.dataListCache);
179 …aceSheetEL?.displayPurgTotalVMData(SnapshotStruct.hoverSnapshotStruct!, totalVMRow!.dataListCache);
186 …p.traceSheetEL?.displayPurgPinVMData(SnapshotStruct.hoverSnapshotStruct!, pinVMRow!.dataListCache);
[all …]
DProcedureWorkerVirtualMemory.ts42 row.dataListCache,
49 drawLoadingFrame(req.context, row.dataListCache, row);
52 for (let re of row.dataListCache) {
DProcedureWorkerNetworkAbility.ts38 let networkAbilityFilter = networkAbilityRow.dataListCache;
49 drawLoadingFrame(req.context, networkAbilityRow.dataListCache, networkAbilityRow);
DProcedureWorkerHiSysEvent.ts30 let hiSysEventFilter = row.dataListCache;
60 drawLoadingFrame(req.context, row.dataListCache, row);
DProcedureWorkerCpuAbility.ts40 let cpuAbilityFilter = cpuAbilityRow.dataListCache;
52 drawLoadingFrame(req.context, cpuAbilityRow.dataListCache, cpuAbilityRow);
DProcedureWorkerLog.ts35 let logFilter = row.dataListCache;
45 drawLoadingFrame(req.context, row.dataListCache, row);
DProcedureWorkerFrameAnimation.ts39 let frameAnimationFilter: FrameAnimationStruct[] = row.dataListCache;
49 drawLoadingFrame(req.context, row.dataListCache, row);
DProcedureWorkerHeapSnapshot.ts30 let filter = row.dataListCache;
76 snapshotRow!.dataListCache,
DProcedureWorkerMemoryAbility.ts39 let memoryAbilityFilter = memoryAbilityRow.dataListCache;
50 drawLoadingFrame(req.context, memoryAbilityRow.dataListCache, memoryAbilityRow);
DProcedureWorkerEnergyAnomaly.ts42 let filter = row.dataListCache;
59 drawLoadingFrame(req.context, row.dataListCache, row);
DProcedureWorkerEnergyState.ts31 let stateFilter = row.dataListCache;
41 drawLoadingFrame(req.context, row.dataListCache, row);
DProcedureWorkerDiskIoAbility.ts39 let diskIoFilter = diskIoAbilityRow.dataListCache;
50 drawLoadingFrame(req.context, diskIoAbilityRow.dataListCache, diskIoAbilityRow);
DProcedureWorkerAllAppStartup.ts31 let filter = appStartUpRow.dataListCache;
DProcedureWorkerEnergySystem.ts36 let systemFilter = row.dataListCache;
46 drawLoadingFrame(req.context, row.dataListCache, row);
DProcedureWorkerFreqExtend.ts30 let freqExtendFilter = row.dataListCache;
/developtools/smartperf_host/ide/src/trace/bean/
DBoxSelection.ts258 let taskData = it.dataListCache.filter((taskData: FuncStruct) => {
418 item.dataListCache.filter(
425 item.dataListCache.filter(
432 item.dataListCache.filter(
439 item.dataListCache.filter(
500 it.dataListCache.forEach((jankData: any) => {
513 it.dataListCache.forEach((jankData: any) => {
533 if (!it.dataListCache || it.dataListCache.length === 0) {
536 for (let sample of it.dataListCache) {
544 sample.timestamp === it.dataListCache[it.dataListCache.length - 1].timestamp
[all …]
/developtools/smartperf_host/ide/src/trace/component/trace/base/
DTraceSheet.ts621 dataListCache: Array<HeapSnapshotStruct>,
622 scrollCallback?: (data: HeapSnapshotStruct, dataListCache: Array<HeapSnapshotStruct>) => void
624 if (dataListCache.length > 1) {
627 dataListCache,
637 tabPaneComparison.initComparison(data, dataListCache);
640 …this.displayTab<TabPaneSummary>('box-heap-summary').setSnapshotData(data, dataListCache, scrollCal…
686 displayPurgTotalVMData = (data: SnapshotStruct, dataListCache: Array<SnapshotStruct>): void => {
688 …<TabPanePurgTotalComparisonVM>('box-purgeable-total-comparison-vm').totalData(data, dataListCache);
694 displayPurgPinVMData = (data: SnapshotStruct, dataListCache: Array<SnapshotStruct>): void => {
696 …yTab<TabPanePurgPinComparisonVM>('box-purgeable-pin-comparison-vm').totalData(data, dataListCache);
[all …]
DTraceRowObject.ts32 public dataListCache: Array<T> = []; property in TraceRowObject
DTraceRow.ts145 public dataListCache: Array<T> = []; property in TraceRow
492 this.dataListCache = [];
531 let arr = this.dataListCache.filter(
536 return this.dataListCache.find(
1107 this.dataListCache = res;
1108 this.dataListCache.push(...this.fixedList);
1123 } else if (this.fixedList.length > 0 && !this.dataListCache.includes(this.fixedList[0])) {
1124 this.dataListCache.push(this.fixedList[0]);
/developtools/smartperf_host/ide/src/trace/component/
DSpSystemTrace.line.ts65 …let findJankEntry = endRowStruct!.dataListCache!.find((dat: any) => dat.name == data.name && dat.p…
113 …let findJankEntry = endRowStruct!.dataListCache!.find((dat: any) => dat.name == data.name && dat.p…
151 …let findJankEntry = endRowStruct!.dataListCache!.find((dat: any) => dat.name == data.name && dat.p…
227 endRowStruct.dataListCache = res;
473 let findJankEntry = endRowStruct!.dataListCache!.find(
DUtils.ts64 let intersectData = row.dataListCache.filter((struct: SnapshotStruct) => {
/developtools/smartperf_host/ide/src/trace/database/ui-worker/hiperf/
DProcedureWorkerHiPerfCPU2.ts22 let hiperfCpu2Filter = row.dataListCache;
DProcedureWorkerHiPerfThread2.ts22 let hiperfThreadFilter = row.dataListCache;
DProcedureWorkerHiPerfProcess2.ts22 let hiperfProcessFilter = row.dataListCache;
/developtools/smartperf_host/ide/test/trace/database/ui-worker/
DProcedureWorkerFrameDynamic.test.ts117 row.dataListCache = dataList;

123