Home
last modified time | relevance | path

Searched refs:tableName (Results 1 – 25 of 33) sorted by relevance

12

/developtools/smartperf_host/trace_streamer/sdk/demo_sdk/sdk/
Dsdk_data_parser.cpp125 int32_t SDKDataParser::CreateCounterObjectTable(const std::string& tableName) in CreateCounterObjectTable() argument
127 …Base::TableDeclare<GpuCounterObjectTable>(*(traceDataCache_->demoDb_), traceDataCache_, tableName); in CreateCounterObjectTable()
132 int32_t SDKDataParser::CreateCounterTable(const std::string& tableName) in CreateCounterTable() argument
134 …oTableBase::TableDeclare<GpuCounterTable>(*(traceDataCache_->demoDb_), traceDataCache_, tableName); in CreateCounterTable()
139 int32_t SDKDataParser::CreateSliceObjectTable(const std::string& tableName) in CreateSliceObjectTable() argument
141 …TableBase::TableDeclare<SliceObjectTable>(*(traceDataCache_->demoDb_), traceDataCache_, tableName); in CreateSliceObjectTable()
146 int32_t SDKDataParser::CreateSliceTable(const std::string& tableName) in CreateSliceTable() argument
148 … DemoTableBase::TableDeclare<SliceTable>(*(traceDataCache_->demoDb_), traceDataCache_, tableName); in CreateSliceTable()
Dsdk_data_parser.h56 int32_t CreateCounterObjectTable(const std::string& tableName);
57 int32_t CreateCounterTable(const std::string& tableName);
58 int32_t CreateSliceObjectTable(const std::string& tableName);
59 int32_t CreateSliceTable(const std::string& tableName);
/developtools/smartperf_host/ide/src/trace/database/
DLongTraceDBUtils.ts23 tableName: string = 'longTable'; property in LongTraceDBUtils
36 name: this.tableName,
47 return this.indexedDBHelp.get(this.tableName, range, 'QueryFileByPage');
51 return this.indexedDBHelp.add(this.tableName, {
/developtools/smartperf_host/ide/src/trace/component/trace/sheet/file-system/
DTabPaneIOTierStatisticsAnalysis.ts147 if (detail.button === 0 && detail.data.tableName !== '' && detail.data.duration !== 0) {
206 ioTitle = detail.data.tableName;
208 ioTitle = this.tierTitleEl?.textContent + ' / ' + detail.data.tableName;
338 if (ioTierPieItem.tableName !== 'other') {
368 this.processName = it.tableName;
420 this.typeName = it.tableName;
449 if (it.tableName !== 'other') {
483 private getIoTierTip(obj: { obj: { tableName: any; durFormat: any; percent: any } }): string {
485 <div>ThreadName:${obj.obj.tableName}</div>
495 this.threadName = it.tableName;
[all …]
DTabPaneVirtualMemoryStatisticsAnalysis.ts147 if (detail.button === 0 && detail.data.tableName !== '' && detail.data.duration !== 0) {
202 title = detail.data.tableName;
204 title = this.virtualMemoryTitleEl?.textContent + ' / ' + detail.data.tableName;
333 if (it.tableName != 'other') {
361 return (obj: { obj: { tableName: any; durFormat: any; percent: any } }): string => {
363 <div>ProcessName:${obj.obj.tableName}</div>
374 this.vmProcessName = it.tableName;
424 this.vmtypeName = it.tableName;
451 if (it.tableName != 'other') {
488 this.vmThreadName = it.tableName;
[all …]
DTabPaneFilesystemStatisticsAnalysis.ts144 if (detail.button === 0 && detail.data.tableName !== '' && detail.data.duration !== 0) {
188 title = detail.data.tableName;
190 title = this.fileSystemTitleEl?.textContent + ' / ' + detail.data.tableName;
329 if (fsPieClickItem.tableName !== 'other') {
360 this.fsProcessName = it.tableName;
403 return (obj: { obj: { tableName: any; durFormat: any; percent: any } }): string => {
405 <div>Type:${obj.obj.tableName}</div>
422 this.typeName = it.tableName;
449 if (it.tableName != 'other') {
484 return (obj: { obj: { tableName: any; durFormat: any; percent: any } }): string => {
[all …]
/developtools/smartperf_host/ide/src/trace/component/trace/sheet/hiperf/
DTabPanePerfAnalysis.ts127 title = detail.data.tableName;
129 title = `${this.titleEl?.textContent} / ${detail.data.tableName}`;
203 if (detail.button === 0 && data.tableName !== '' && data.count !== 0) {
317 <div>Process:${perfObj.obj.tableName}</div>
327 if (it.tableName !== 'other') {
364 this.titleEl!.textContent = it.tableName;
366 this.processName = it.tableName;
391 return `<div><div>Thread:${obj.obj.tableName}</div><div>Sample Count:${obj.obj.count}</div>
397 if (it.tableName !== 'other') {
423 if (this.processName.length > 0 && it.tableName.length > 0) {
[all …]
/developtools/smartperf_host/ide/test/trace/component/trace/sheet/hiperf/
DTabPanePerfAnalysis.test.ts89 tableName: 'hiperf(28917)',
96 tableName: 'render_service(388)',
103 tableName: 'hilogd(233)',
110 tableName: 'power_host(374)',
142 tableName: 'kworker/0:0H-mmc_complete(28750)',
149 tableName: 'com.ohos.callui(1362)',
187 tableName: 'kworker/0:0H-mmc_complete(28750)',
194 tableName: 'com.ohos.callui(1362)',
346 tableName: 'ld-musl-aarch64.so.1',
356 tableName: 'libc++.so',
[all …]
/developtools/smartperf_host/ide/src/trace/component/chart/
DSpSdkChart.ts45 showType.tableName,
49 let maxValue = this.createMaxValueSql(showType.tableName, 'where counter_id = $counter_id');
51 let countSql = this.createSql(startTime, innerTable.tableName, innerTable.columns);
65 showType.tableName,
75 innerTable.tableName,
81 innerTable.tableName,
90 countSql = this.createSql(startTime, innerTable.tableName, innerTable.columns);
130 …private createSliceSql(startTime: number, tableName: string, columns: Array<any>, where?: string):…
146 sliceSelectSql = `${sliceSelectSql }from ${ tableName}`;
153 private createMaxValueSql(tableName: string, where?: string): string {
[all …]
/developtools/smartperf_host/trace_streamer/src/table/base/
Dtable_base.cpp30 std::string tableName; member
40 void TableBase::TableRegister(sqlite3& db, TraceDataCache* cache, const std::string& tableName, Tab… in TableRegister() argument
45 context->tableName = tableName; in TableRegister()
56 table->name_ = xdesc->tableName; in TableRegister()
86 SetModuleCallbacks(module, tableName); in TableRegister()
87 sqlite3_create_module_v2(&db, tableName.c_str(), &module, context.release(), in TableRegister()
91 void TableBase::SetModuleCallbacks(sqlite3_module& module, const std::string& tableName) in SetModuleCallbacks() argument
127 if (tableName == "process" || tableName == "thread") { in SetModuleCallbacks()
/developtools/smartperf_host/ide/test/trace/component/trace/sheet/file-system/
DTabPaneFilesystemStatisticsAnalysis.test.ts95 tableName: 'test(3744)',
105 tableName: 'test(3554)',
125 …csData = { durFormat: '194.23ms ', duration: 0, isHover: false, percent: '100.00', tableName: '' };
280 tableName: '',
286 tableName: '',
292 tableName: '',
298 tableName: '',
DTabPaneVirtualMemoryStatisticsAnalysis.test.ts105 tableName: 'test(6124)',
114 tableName: 'test(5624)',
255 tableName: '',
261 tableName: '',
267 tableName: '',
273 tableName: '',
DTabPaneIOTierStatisticsAnalysis.test.ts106 tableName: 'sumb(3745)',
115 tableName: 'test(3204)',
271 tableName: '',
277 tableName: '',
283 tableName: '',
289 tableName: '',
/developtools/smartperf_host/ide/src/trace/component/trace/sheet/native-memory/
DTabPaneNMStatisticAnalysis.ts52 tableName = '';
216 if (data.tableName !== '' && data.existSize !== 0) {
233 if (data.tableName !== '' && data.existSize !== 0) {
247 if (data.tableName !== '' && data.existSize !== 0) {
434 <div>Memory Type:${typeTipValue.obj.tableName}</div>
445 if (it.tableName != 'other') {
486 <div>Thread:${threadTipValue.obj.tableName}</div>
559 if (it.tableName != 'other') {
799 analysis.tableName = analysis.tName;
883 analysis.tableName = analysis.libName;
[all …]
/developtools/smartperf_host/trace_streamer/src/table/base/include/
Dtable_base.h39 static void TableDeclare(sqlite3& db, TraceDataCache* dataCache, const std::string& tableName) in TableDeclare() argument
41 TableRegister(db, dataCache, tableName, [](const TraceDataCache* cache) { in TableDeclare()
44 dataCache->AppendNewTable(tableName); in TableDeclare()
157 …static void TableRegister(sqlite3& db, TraceDataCache* cache, const std::string& tableName, TabTem…
158 static void SetModuleCallbacks(sqlite3_module& module, const std::string& tableName);
Dspan_join.h55 const std::string& tableName,
/developtools/smartperf_host/ide/test/trace/component/trace/sheet/native-memory/
DTabPaneNMStatisticAnalysis.test.ts66 tableName: 'Test',
217 tableName: 0,
220 tableName: 1,
381 tableName: '',
/developtools/profiler/host/smartperf/client/client_ui/entry/src/main/ets/common/database/
DDatabaseUtils.ts43 insertGeneraData(tableName: string, tGeneralInfo: TGeneralInfo) {
84 …SPLogger.DEBUG(TAG,"--> insert into insertGeneraData :tableName:" + tableName + "| valueInsert:" …
85 rdbStore.insert(tableName, valueInsert);
93 insertData(tableName: string, pathSuffix: number, tIndexInfo: TIndexInfo) {
144 rdbStore.insert(tableName, valueInsert)
383 insertPowerSensor(tableName: string, pathSuffix: number, tPowerSenspor: TPowerSensorInfo) {
404 rdbStore.insert(tableName, valueInsert)
412 insertPowerAppInfo(tableName: string, pathSuffix: number, tPowerApp: TPowerAppInfo) {
431 rdbStore.insert(tableName, valueInsert)
/developtools/smartperf_host/trace_streamer/sdk/demo_sdk/table/
Ddemo_table_base.cpp29 std::string tableName; member
46 demoContext->tableName = demoTableName; in DemoTableRegister()
57 demoTable->name_ = demoXdesc->tableName; in DemoTableRegister()
Ddemo_table_base.h113 const std::string& tableName,
/developtools/smartperf_host/trace_streamer/sdk/demo_sdk/trace_data/
Ddemo_trace_data_db.h55 void DemoAppendNewTable(std::string tableName);
Ddemo_trace_data_db.cpp68 void DemoTraceDataDB::DemoAppendNewTable(std::string tableName) in DemoAppendNewTable() argument
70 demoInternalTables_.push_back(tableName); in DemoAppendNewTable()
/developtools/smartperf_host/ide/src/trace/component/trace/sheet/sdk/
DTabPaneSdkCounter.ts161 showType.tableName +
167 showType.tableName +
DTabPaneSdkSlice.ts193 …let sliceSql = `${sliceSelectSql.slice(0, -1)} from ${showType.tableName} as a,${innerTableName} a…
288 return inner.tableName;
/developtools/smartperf_host/trace_streamer/src/trace_data/
Dtrace_data_db.h64 void AppendNewTable(std::string tableName);

12