Home
last modified time | relevance | path

Searched refs:threadData (Results 1 – 16 of 16) sorted by relevance

/developtools/profiler/host/smartperf/trace_streamer/src/filter/
Dapp_start_filter.cpp94 auto threadData = traceDataCache_->GetConstThreadData(); in UpdatePidByNameIndex() local
102 for (int i = 0; i < threadData.size(); ++i) { in UpdatePidByNameIndex()
103 if (item.first == threadData[i].nameIndex_) { in UpdatePidByNameIndex()
104 ipid = threadData[i].internalPid_; in UpdatePidByNameIndex()
105 tid = threadData[i].tid_; in UpdatePidByNameIndex()
192 auto threadData = traceDataCache_->GetConstThreadData(); in ParserAppStartup() local
193 auto nameindex = threadData[callId].nameIndex_; in ParserAppStartup()
194 auto ipid = threadData[callId].internalPid_; in ParserAppStartup()
195 auto tid = threadData[callId].tid_; in ParserAppStartup()
237 auto threadData = traceDataCache_->GetConstThreadData(); in ParserSoInitalization() local
[all …]
/developtools/smartperf_host/trace_streamer/src/filter/
Dapp_start_filter.cpp102 auto threadData = traceDataCache_->GetConstThreadData(); in UpdatePidByNameIndex() local
110 for (int i = 0; i < threadData.size(); ++i) { in UpdatePidByNameIndex()
111 if (item.first == threadData[i].nameIndex_) { in UpdatePidByNameIndex()
112 ipid = threadData[i].internalPid_; in UpdatePidByNameIndex()
113 tid = threadData[i].tid_; in UpdatePidByNameIndex()
213 auto threadData = traceDataCache_->GetConstThreadData(); in ParserAppStartup() local
214 auto nameindex = threadData[callId].nameIndex_; in ParserAppStartup()
215 auto ipid = threadData[callId].internalPid_; in ParserAppStartup()
216 auto tid = threadData[callId].tid_; in ParserAppStartup()
263 auto threadData = traceDataCache_->GetConstThreadData(); in ParserSoInitalization() local
[all …]
/developtools/smartperf_host/ide/src/trace/component/trace/sheet/hiperf/
DTabPanePerfAnalysis.ts32 private threadData!: any[];
116 this.currentLevelData = this.threadData;
228 data: this.getPerfPieChartData(this.threadData),
280 this.threadData.unshift(this.allThreadCount);
281 this.perfTableThread!.recycleDataSource = this.threadData;
284 this.threadData.shift(this.allThreadCount);
285 this.currentLevelData = this.threadData;
480 this.threadData = [];
563 this.threadData = [];
570 const threadData = { constant
[all …]
/developtools/profiler/host/smartperf/ide/src/trace/component/trace/sheet/hiperf/
DTabPanePerfAnalysis.ts32 private threadData!: any[];
116 this.currentLevelData = this.threadData;
228 data: this.getPieChartData(this.threadData),
280 this.threadData.unshift(this.allThreadCount);
281 this.perfTableThread!.recycleDataSource = this.threadData;
284 this.threadData.shift(this.allThreadCount);
285 this.currentLevelData = this.threadData;
480 this.threadData = [];
563 this.threadData = [];
570 const threadData = { constant
[all …]
/developtools/profiler/host/smartperf/ide/src/trace/component/trace/sheet/file-system/
DTabPaneIOTierStatisticsAnalysis.ts31 private threadData!: any[];
320 data: this.getPieChartData(this.threadData),
358 let threadData = ioThreadData.data; variable
359 threadData.isHover = true;
369 this.threadData.unshift(this.threadStatisticsData);
370 this.tableThread!.recycleDataSource = this.threadData;
372 this.threadData.shift(this.threadStatisticsData);
373 this.currentLevelData = this.threadData;
701 this.threadData = [];
710 const threadData = { constant
[all …]
DTabPaneFilesystemStatisticsAnalysis.ts355 let threadData = evt.detail; variable
356 if (threadData.data) {
357 let tableData = threadData.data;
359 if (threadData.callBack) {
360 threadData.callBack(true);
720 const threadData = { constant
729 this.fileStatisticsAnalysisThreadData.push(threadData);
DTabPaneVirtualMemoryStatisticsAnalysis.ts358 let threadData = vmThreadData.data; variable
359 threadData.isHover = true;
711 const threadData = { constant
720 this.vmStatisticsAnalysisThreadData.push(threadData);
/developtools/smartperf_host/ide/src/trace/component/trace/sheet/file-system/
DTabPaneIOTierStatisticsAnalysis.ts31 private threadData!: any[];
308 data: this.getIOTierPieChartData(this.threadData),
341 let threadData = ioThreadData.data; variable
342 threadData.isHover = true;
352 this.threadData.unshift(this.threadStatisticsData);
353 this.ioTierTableThread!.recycleDataSource = this.threadData;
355 this.threadData.shift(this.threadStatisticsData);
356 this.currentLevelData = this.threadData;
691 this.threadData = [];
700 const threadData = { constant
[all …]
DTabPaneFilesystemStatisticsAnalysis.ts344 let threadData = evt.detail; variable
345 if (threadData.data) {
346 let tableData = threadData.data;
348 if (threadData.callBack) {
349 threadData.callBack(true);
717 const threadData = { constant
726 this.fileStatisticsAnalysisThreadData.push(threadData);
DTabPaneVirtualMemoryStatisticsAnalysis.ts349 let threadData = vmThreadData.data; variable
350 threadData.isHover = true;
702 const threadData = { constant
711 this.vmStatisticsAnalysisThreadData.push(threadData);
/developtools/profiler/host/smartperf/ide/src/trace/database/logic-worker/
DProcedureLogicWorkerPerf.ts23 threadData: any = {}; property in ProcedureLogicWorkerPerf
57 this.threadData[thread.tid] = thread;
203 this.threadData = {};
216 if (this.threadData[callChain.tid] == undefined) {
269 …threadCallChain.name = this.threadData[callChain.tid].threadName || 'Thread' + '(' + callChain.tid…
303 …threadCallChain.name = this.threadData[countSample.tid].threadName || 'Thead' + '(' + countSample.…
340 …processMerageData.symbolName = this.threadData[merageData.tid].processName || `Process(${merageDat…
431 …processMerageData.symbolName = this.threadData[merageData.tid].processName || `Process(${merageDat…
736 const threadName = this.threadData[sample.tid].threadName || 'Thead';
737 const processName = this.threadData[sample.pid].threadName || 'Process';
/developtools/smartperf_host/ide/src/trace/database/logic-worker/
DProcedureLogicWorkerPerf.ts25 threadData: any = {}; property in ProcedureLogicWorkerPerf
61 this.threadData[thread.tid] = thread;
225 this.threadData = {};
238 if (this.threadData[callChain.tid] == undefined) {
291 …threadCallChain.name = (this.threadData[callChain.tid].threadName || 'Thread') + '(' + callChain.t…
325 …threadCallChain.name = this.threadData[countSample.tid].threadName || 'Thread' + '(' + countSample…
363 (this.threadData[merageData.tid].processName || 'Process') + `(${merageData.pid})`;
454 …processMerageData.symbolName = this.threadData[merageData.tid].processName || `Process(${merageDat…
764 const threadName = this.threadData[sample.tid].threadName || 'Thread';
765 const processName = this.threadData[sample.pid].threadName || 'Process';
/developtools/smartperf_host/ide/src/trace/component/trace/sheet/native-memory/
DTabPaneNMStatisticAnalysis.ts89 private threadData!: Array<AnalysisObj>;
276 data: this.getPieChartData(this.threadData),
336 this.threadUsageTbl!.recycleDataSource = this.threadData;
734 this.threadData = [];
744 this.threadData.push(analysis);
746 this.threadData.sort((a, b) => b.existSize - a.existSize);
747 this.currentLevelData = this.threadData;
/developtools/profiler/host/smartperf/ide/src/trace/component/trace/sheet/native-memory/
DTabPaneNMStatisticAnalysis.ts88 private threadData!: Array<AnalysisObj>;
269 data: this.getPieChartData(this.threadData),
329 this.threadUsageTbl!.recycleDataSource = this.threadData;
724 this.threadData = [];
734 this.threadData.push(analysis);
736 this.threadData.sort((a, b) => b.existSize - a.existSize);
737 this.currentLevelData = this.threadData;
/developtools/smartperf_host/ide/test/trace/component/trace/sheet/
DTabPaneCurrentSelection.test.ts79 let threadData = [ variable
/developtools/smartperf_host/ide/test/trace/component/trace/sheet/hiperf/
DTabPanePerfAnalysis.test.ts131 tabPanePerfAnalysis.threadData = [