Home
last modified time | relevance | path

Searched refs:table (Results 1 - 25 of 184) sorted by relevance

12345678

/developtools/hiperf/test/unittest/common/native/
H A Dunique_stack_table_test.cpp78 std::shared_ptr<UniqueStackTable> table = std::make_shared<UniqueStackTable>(1); in HWTEST_F() local
84 EXPECT_NE(table->PutIpsInTable(&stackId, baseips, sizeof(baseips)/sizeof(uint64_t)), 0); in HWTEST_F()
85 EXPECT_NE(table->PutIpsInTable(&stackIdpart, partips, sizeof(partips)/sizeof(uint64_t)), 0); in HWTEST_F()
86 EXPECT_NE(table->PutIpsInTable(&stackIdpart1, partips1, sizeof(partips1)/sizeof(uint64_t)), 0); in HWTEST_F()
94 table->GetIpsByStackId(stackId, checkbaseips); in HWTEST_F()
95 table->GetIpsByStackId(stackIdpart, checkpartips); in HWTEST_F()
96 table->GetIpsByStackId(stackIdpart1, checkpartips1); in HWTEST_F()
104 std::shared_ptr<UniqueStackTable> table = std::make_shared<UniqueStackTable>(1, maxsize); in HWTEST_F() local
105 EXPECT_EQ(table->Resize(), false); in HWTEST_F()
111 std::shared_ptr<UniqueStackTable> table in HWTEST_F() local
[all...]
/developtools/smartperf_host/trace_streamer/src/table/ftrace/
H A Dmeasure_table.cpp40 MeasureTable::Cursor::Cursor(const TraceDataCache *dataCache, TableBase *table) in Cursor() argument
42 table, in Cursor()
43 static_cast<uint32_t>(table->name_ == "measure" in Cursor()
45 : (table->name_ == "process_measure" in Cursor()
47 : (table->name_ == "sys_mem_measure" in Cursor()
50 measureObj(table->name_ == "measure" in Cursor()
52 : (table->name_ == "process_measure" in Cursor()
54 : (table->name_ == "sys_mem_measure" ? dataCache->GetConstSysMemMeasureData() in Cursor()
H A Dclock_snapshot_table.cpp39 ClockSnapShotTable::Cursor::Cursor(const TraceDataCache *dataCache, TableBase *table) in Cursor() argument
40 : TableBase::Cursor(dataCache, table, static_cast<uint32_t>(dataCache->GetConstClockSnapshotData().Size())), in Cursor()
H A Dapp_startup_table.cpp41 AppStartupTable::Cursor::Cursor(const TraceDataCache *dataCache, TableBase *table) in Cursor() argument
42 : TableBase::Cursor(dataCache, table, static_cast<uint32_t>(dataCache->GetConstAppStartupData().Size())), in Cursor()
/developtools/integration_verification/tools/fotff/rec/
H A Dreport.go23 "github.com/jedib0t/go-pretty/v6/table"
32 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/trace_streamer/src/table/base/
H A Dtable_base.cpp54 auto table = xdesc->tmplate(xdesc->dataCache); in TableRegister()
55 table->name_ = xdesc->tableName; in TableRegister()
56 if (table->name_ == "process" || table->name_ == "thread") { in TableRegister()
57 table->wdataCache_ = xdesc->dataCache; in TableRegister()
60 table->Init(argc, argv); in TableRegister()
61 std::string createStmt = table->CreateTableSql(); in TableRegister()
62 TS_LOGD("xCreate table %s, statement: %s", table->name_.c_str(), createStmt.c_str()); in TableRegister()
65 if ((table in TableRegister()
219 Cursor(const TraceDataCache *dataCache, TableBase *table, uint32_t rowCount) Cursor() argument
[all...]
H A Dmeta_table.cpp35 MetaTable::Cursor::Cursor(const TraceDataCache *dataCache, TableBase *table) in Cursor() argument
36 : TableBase::Cursor(dataCache, table, METADATA_ITEM_MAX) in Cursor()
H A Drange_table.cpp35 RangeTable::Cursor::Cursor(const TraceDataCache *dataCache, TableBase *table) : TableBase::Cursor(dataCache, table, 1) in Cursor() argument
H A 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->GetConstDataSourceClockIdData().Size())), in Cursor()
H A Ddevice_info_table.cpp36 DeviceInfoTable::Cursor::Cursor(const TraceDataCache *dataCache, TableBase *table) in Cursor() argument
37 : TableBase::Cursor(dataCache, table, 1), deviceInfoObj_(dataCache->GetConstDeviceInfo()) in Cursor()
H A Ddata_type_table.cpp37 DataTypeTable::Cursor::Cursor(const TraceDataCache *dataCache, TableBase *table) in Cursor() argument
38 : TableBase::Cursor(dataCache, table, static_cast<uint32_t>(dataCache->GetConstDataTypeData().Size())), in Cursor()
/developtools/syscap_codec/tools/
H A 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: str) -> bool:
220 table.field_names = ["{} and {} are Consistent".format(a_name, b_name)]
221 print(table)
/developtools/profiler/tools/smaps_show/src/
H A Dmain.rs153 let mut table = Table::new(); in print_smaps_core() variables
154 table.set_format(*format::consts::FORMAT_NO_LINESEP_WITH_TITLE); in print_smaps_core()
156 table.set_titles(Row::new(value_keys.into_iter().chain(info_keys.into_iter()).map(|&x| Cell::new(x.0)).collect())); 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()
181 // Print the table to stdout in print_smaps_core()
182 table.printstd(); in print_smaps_core()
/developtools/smartperf_host/trace_streamer/sdk/demo_sdk/table/
H A 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()
H A 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->GetConstGpuCounterObjectData().Size())), in Cursor()
H A 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().Size())), in Cursor()
H A Dslice_table.cpp39 SliceTable::Cursor::Cursor(const TraceDataCache *dataCache, DemoTableBase *table) in Cursor() argument
40 : DemoTableBase::Cursor(dataCache, table, static_cast<uint32_t>(dataCache->GetConstSliceData().Size())), in Cursor()
H A Dgpu_counter_table.cpp38 GpuCounterTable::Cursor::Cursor(const TraceDataCache *dataCache, DemoTableBase *table) in Cursor() argument
39 : DemoTableBase::Cursor(dataCache, table, static_cast<uint32_t>(dataCache->GetConstGpuCounterData().Size())), in Cursor()
/developtools/smartperf_host/trace_streamer/src/table/monitor/
H A Dmemory_profile_table.cpp37 MemoryProfileTable::Cursor::Cursor(const TraceDataCache *dataCache, TableBase *table) in Cursor() argument
38 : TableBase::Cursor(dataCache, table, static_cast<uint32_t>(dataCache->GetConstProfileMemInfo().Size())), in Cursor()
H A Dmemory_cpu_table.cpp36 MemoryCpuTable::Cursor::Cursor(const TraceDataCache *dataCache, TableBase *table) in Cursor() argument
37 : TableBase::Cursor(dataCache, table, static_cast<uint32_t>(dataCache->GetConstCpuDumpInfo().Size())), in Cursor()
H A Dhidump_table.cpp35 HidumpTable::Cursor::Cursor(const TraceDataCache *dataCache, TableBase *table) in Cursor() argument
36 : TableBase::Cursor(dataCache, table, static_cast<uint32_t>(dataCache->GetConstHidumpData().Size())), in Cursor()
/developtools/smartperf_host/trace_streamer/src/table/hi_sysevent/
H A 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->GetConstHiSysEventSubkeysData().Size())), in Cursor()
/developtools/smartperf_host/trace_streamer/src/table/js_memory/
H A Djs_heap_string_table.cpp36 JsHeapStringTable::Cursor::Cursor(const TraceDataCache *dataCache, TableBase *table) in Cursor() argument
37 : TableBase::Cursor(dataCache, table, static_cast<uint32_t>(dataCache->GetConstJsHeapStringData().Size())), in Cursor()
H A 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().Size())), in Cursor()
/developtools/hapsigner/hapsigntool/hap_sign_tool_lib/src/main/java/com/ohos/hapsigntool/codesigning/sign/
H A DBcSignedDataGenerator.java182 ASN1EncodableVector table = new ASN1EncodableVector(); in getPKCS9Attributes()
189 table.add(signingTimeAttr); in getPKCS9Attributes()
190 table.add(contentTypeAttr); in getPKCS9Attributes()
191 table.add(messageDigestAttr); in getPKCS9Attributes()
195 table.add(ownerIDAttr); in getPKCS9Attributes()
197 return new DERSet(table); in getPKCS9Attributes()

Completed in 20 milliseconds

12345678