Home
last modified time | relevance | path

Searched refs:table (Results 1 – 25 of 229) sorted by relevance

12345678910

/developtools/hiperf/test/unittest/common/native/
Dunique_stack_table_test.cpp78 std::shared_ptr<UniqueStackTable> table = std::make_shared<UniqueStackTable>(1); variable
84 EXPECT_NE(table->PutIpsInTable(&stackId, baseips, sizeof(baseips)/sizeof(uint64_t)), 0);
85 EXPECT_NE(table->PutIpsInTable(&stackIdpart, partips, sizeof(partips)/sizeof(uint64_t)), 0);
86 EXPECT_NE(table->PutIpsInTable(&stackIdpart1, partips1, sizeof(partips1)/sizeof(uint64_t)), 0);
96 table->GetIpsByStackId(stackId, checkbaseips);
97 table->GetIpsByStackId(stackIdpart, checkpartips);
98 table->GetIpsByStackId(stackIdpart1, checkpartips1);
106 std::shared_ptr<UniqueStackTable> table = std::make_shared<UniqueStackTable>(1, maxsize); variable
107 EXPECT_EQ(table->Resize(), false);
113 std::shared_ptr<UniqueStackTable> table = std::make_shared<UniqueStackTable>(1, oversize); variable
[all …]
/developtools/smartperf_host/ide/src/trace/component/schedulingAnalysis/
DTop20ThreadCpuUsage.ts36 private table: LitTable | null | undefined; property in Top20ThreadCpuUsage
48 private map: Map<string, { chart: LitChartColumn; table: LitTable }> | undefined;
93 this.table = this.shadowRoot!.querySelector<LitTable>('#tb-thread-usage');
101 this.map = new Map<string, { chart: LitChartColumn; table: LitTable }>();
102 this.map.set('total', { chart: this.chartTotal!, table: this.table! });
103 this.map.set('small', { chart: this.chart2!, table: this.tableSmall! });
104 this.map.set('mid', { chart: this.chart3!, table: this.tableMid! });
105 this.map.set('big', { chart: this.chart4!, table: this.tableBig! });
131 let tab = this.map!.get(key)!.table;
168 sortByColumn(detail: any, table: LitTable | null | undefined, data: Array<any>) {
[all …]
DCheckCpuSetting.ts37 private table: HTMLDivElement | null | undefined; property in CheckCpuSetting
42 this.table = this.shadowRoot!.querySelector<HTMLDivElement>('#tb_cpu_setting');
61 this.table!.innerHTML = '';
123 this.table?.append(...[div, bigCheckBox, midCheckBox, smallCheckBox]);
143 this.table?.append(...[column1, column2, column3, column4]);
/developtools/smartperf_host/trace_streamer/sdk/demo_sdk/
DBUILD.gn44 "table",
66 "table/demo_meta_table.cpp",
67 "table/demo_meta_table.h",
68 "table/demo_table_base.cpp",
69 "table/gpu_counter_object_table.cpp",
70 "table/gpu_counter_object_table.h",
71 "table/gpu_counter_table.cpp",
72 "table/gpu_counter_table.h",
73 "table/slice_object_table.cpp",
74 "table/slice_object_table.h",
[all …]
/developtools/smartperf_host/trace_streamer/src/table/ftrace/
Dmeasure_table.cpp40 MeasureTable::Cursor::Cursor(const TraceDataCache* dataCache, TableBase* table) in Cursor() argument
43 table, in Cursor()
44 static_cast<uint32_t>(table->name_ == "measure" || table->name_ == "_measure" in Cursor()
46 … : (table->name_ == "process_measure" || table->name_ == "_process_measure" in Cursor()
49 measureObj(table->name_ == "measure" || table->name_ == "_measure" in Cursor()
51 : (table->name_ == "process_measure" || table->name_ == "_process_measure" in Cursor()
/developtools/smartperf_host/ide/src/trace/component/trace/sheet/gpu/
DTabPaneGpuClickSelect.ts130 public theadClick(table: LitTable, data: Array<any>) {
131 let labels = table?.shadowRoot?.querySelector('.th > .td')!.querySelectorAll('label');
137 table!.setStatus(data, false);
138 table!.recycleDs = table!.meauseTreeRowElement(data, RedrawTreeForm.Retract);
143 table!.setStatus(item.children, false);
146 table!.recycleDs = table!.meauseTreeRowElement(data, RedrawTreeForm.Retract);
148 table!.setStatus(data, true);
149 table!.recycleDs = table!.meauseTreeRowElement(data, RedrawTreeForm.Expand);
/developtools/smartperf_host/ide/src/trace/database/sql/
DNativeHook.sql.ts24 const table = isStatistic ? 'native_hook_statistic' : 'native_hook';
34 ${table} A ,trace_range B
180 export const queryNativeHookProcess = (table: string): Promise<Array<NativeHookProcess>> => {
183 distinct ${table}.ipid,
187 ${table}
191 ${table}.ipid = p.id
/developtools/smartperf_host/trace_streamer/src/trace_data/
DBUILD.gn74 "${SRC}/table",
75 "${SRC}/table/base/include",
76 "${SRC}/table/ebpf/include",
77 "${SRC}/table/ftrace/include",
78 "${SRC}/table/hiperf/include",
79 "${SRC}/table/hi_sysevent/include",
80 "${SRC}/table/js_memory/include",
81 "${SRC}/table/monitor/include",
82 "${SRC}/table/native_hook/include",
/developtools/integration_verification/tools/fotff/rec/
Dreport.go32 table{
61 tb := table.NewWriter()
63 var row = table.Row{"test case"}
71 tb.SetRowPainter(func(row table.Row) text.Colors {
83 var rows []table.Row
85 var row = table.Row{k}
/developtools/smartperf_host/ide/test/trace/component/trace/sheet/native-memory/
DTabPaneNMCallTree.test.ts86 let table = document.querySelector('#filter'); variable
87 table!.setAttribute('tree', '1');
88 tabPaneNMCallTree.filter = table;
97 let table = document.querySelector('#filter'); variable
98 table!.setAttribute('tree', '1');
99 tabPaneNMCallTree.filter = table;
/developtools/smartperf_host/trace_streamer/src/table/base/
Dtable_base.cpp55 auto table = xdesc->tmplate(xdesc->dataCache); in TableRegister() local
56 table->name_ = xdesc->tableName; in TableRegister()
57 if (table->name_ == "process" || table->name_ == "thread") { in TableRegister()
58 table->wdataCache_ = xdesc->dataCache; in TableRegister()
61 table->Init(argc, argv); in TableRegister()
62 std::string createStmt = table->CreateTableSql(); in TableRegister()
63 TS_LOGD("xCreate table %s, statement: %s", table->name_.c_str(), createStmt.c_str()); in TableRegister()
66 if ((table->name_ == "span_join") || (table->name_ == "_span_join")) { in TableRegister()
69 TS_LOGE("sqlite3_declare_vtab %s faild: %s", table->name_.c_str(), createStmt.c_str()); in TableRegister()
72 *ppVTab = table.release(); in TableRegister()
[all …]
Drange_table.cpp35 …or::Cursor(const TraceDataCache* dataCache, TableBase* table) : TableBase::Cursor(dataCache, table in Cursor() argument
Dmeta_table.cpp35 MetaTable::Cursor::Cursor(const TraceDataCache* dataCache, TableBase* table) in Cursor() argument
36 : TableBase::Cursor(dataCache, table, METADATA_ITEM_MAX) in Cursor()
Ddatasource_clockid_table.cpp37 DataSourceClockIdTableTable::Cursor::Cursor(const TraceDataCache* dataCache, TableBase* table) in Cursor() argument
38 …: TableBase::Cursor(dataCache, table, static_cast<uint32_t>(dataCache->GetConstDataSourceClockIdDa… in Cursor()
/developtools/smartperf_host/ide/src/trace/component/chart/
DSpSdkChart.ts42 …private parseJsonByCounterType(startTime: number, showType: any, configObj: any, table: any): void…
52 table.push({
62 …private parseJsonBySliceType(startTime: number, showType: any, configObj: any, table: any[]): void…
92 table.push({
106 let table: any[] = [];
118 this.parseJsonByCounterType(startTime, showType, configObj, table);
120 this.parseJsonBySliceType(startTime, showType, configObj, table);
123 tablesMap.set(key, table);
189 let table = tablesMap.get(componentId);
190 if (table !== null) {
[all …]
/developtools/syscap_codec/tools/
Dsyscap_check.py206 def print_inconsistent(diff_set: set, a_name: str, b_name: str, table: PrettyTable,
208 table.clear()
210 table.field_names = ["index", "SysCap only in {}".format(a_name), "Files"]
211 add_dict_as_table_row(table, value_file_dict)
213 table.field_names = ["All SysCap in {} have been Covered by {}".format(a_name, b_name)]
214 print(table)
218 def print_consistent(a_diff_b_set: set, b_diff_a_set: set, table: PrettyTable, a_name: str, b_name:…
220 table.field_names = ["{} and {} are Consistent".format(a_name, b_name)]
221 print(table)
/developtools/ace_js2bundle/ace-loader/sample/lite/pages/index/
Dindex.css1 .btn .table {
7 .table {
/developtools/smartperf_host/ide/src/doc/md/
Dquickstart_native_memory.md158 | @-(libark jsvm table) | 不显示 Responsible Library 包含 libark 且 Responsible C…
161 | @-(\* table) | 不显示 Responsible Caller 中 table 的数据 …
163 | @(_ table) - (libark _) | 只显示 Responsible Caller 包含 table 且 Responsible Lib…
/developtools/profiler/tools/smaps_show/src/
Dmain.rs153 let mut table = Table::new(); in print_smaps_core() localVariable
154 table.set_format(*format::consts::FORMAT_NO_LINESEP_WITH_TITLE); in print_smaps_core()
156table.set_titles(Row::new(value_keys.into_iter().chain(info_keys.into_iter()).map(|&x| Cell::new(x… in print_smaps_core()
163 table.add_row(r); in print_smaps_core()
172 table.add_empty_row(); in print_smaps_core()
179 table.add_row(rsum); in print_smaps_core()
182 table.printstd(); in print_smaps_core()
/developtools/smartperf_host/trace_streamer/sdk/demo_sdk/table/
Ddemo_meta_table.cpp36 DemoMetaTable::Cursor::Cursor(const TraceDataCache* dataCache, DemoTableBase* table) in Cursor() argument
37 : DemoTableBase::Cursor(dataCache, table, MetaDataItem::METADATA_ITEM_MAX) in Cursor()
Dgpu_counter_object_table.cpp36 GpuCounterObjectTable::Cursor::Cursor(const TraceDataCache* dataCache, DemoTableBase* table) in Cursor() argument
37 …: DemoTableBase::Cursor(dataCache, table, static_cast<uint32_t>(dataCache->GetConstGpuCounterObjec… in Cursor()
Dslice_object_table.cpp36 SliceObjectTable::Cursor::Cursor(const TraceDataCache* dataCache, DemoTableBase* table) in Cursor() argument
37 …: DemoTableBase::Cursor(dataCache, table, static_cast<uint32_t>(dataCache->GetConstSliceObjectData… in Cursor()
/developtools/ace_js2bundle/ace-loader/test/card/testcase/pages/commonAttr/
DcommonAttr.hml18 <div class="title table">class_test2</div>
21 <div class="title table">class_test3</div>
/developtools/smartperf_host/trace_streamer/src/table/js_memory/
Djs_heap_sample_table.cpp36 JsHeapSampleTable::Cursor::Cursor(const TraceDataCache* dataCache, TableBase* table) in Cursor() argument
37 …: TableBase::Cursor(dataCache, table, static_cast<uint32_t>(dataCache->GetConstJsHeapSampleData().… in Cursor()
/developtools/smartperf_host/trace_streamer/src/table/hi_sysevent/
Dsysevent_subkey_table.cpp36 SysEventSubkeyTable::Cursor::Cursor(const TraceDataCache* dataCache, TableBase* table) in Cursor() argument
37 …: TableBase::Cursor(dataCache, table, static_cast<uint32_t>(dataCache->GetConstHiSysEventSubkeysDa… in Cursor()

12345678910