/developtools/hiperf/test/unittest/common/native/ |
H A D | unique_stack_table_test.cpp | 78 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 D | measure_table.cpp | 40 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 D | clock_snapshot_table.cpp | 39 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 D | app_startup_table.cpp | 41 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 D | report.go | 23 "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 D | table_base.cpp | 54 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 D | meta_table.cpp | 35 MetaTable::Cursor::Cursor(const TraceDataCache *dataCache, TableBase *table) in Cursor() argument 36 : TableBase::Cursor(dataCache, table, METADATA_ITEM_MAX) in Cursor()
|
H A D | range_table.cpp | 35 RangeTable::Cursor::Cursor(const TraceDataCache *dataCache, TableBase *table) : TableBase::Cursor(dataCache, table, 1) in Cursor() argument
|
H A D | datasource_clockid_table.cpp | 37 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 D | device_info_table.cpp | 36 DeviceInfoTable::Cursor::Cursor(const TraceDataCache *dataCache, TableBase *table) in Cursor() argument 37 : TableBase::Cursor(dataCache, table, 1), deviceInfoObj_(dataCache->GetConstDeviceInfo()) in Cursor()
|
H A D | data_type_table.cpp | 37 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 D | syscap_check.py | 206 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 D | main.rs | 153 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 D | demo_meta_table.cpp | 36 DemoMetaTable::Cursor::Cursor(const TraceDataCache *dataCache, DemoTableBase *table) in Cursor() argument 37 : DemoTableBase::Cursor(dataCache, table, MetaDataItem::METADATA_ITEM_MAX) in Cursor()
|
H A D | gpu_counter_object_table.cpp | 36 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 D | slice_object_table.cpp | 36 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 D | slice_table.cpp | 39 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 D | gpu_counter_table.cpp | 38 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 D | memory_profile_table.cpp | 37 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 D | memory_cpu_table.cpp | 36 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 D | hidump_table.cpp | 35 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 D | sysevent_subkey_table.cpp | 36 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 D | js_heap_string_table.cpp | 36 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 D | js_heap_sample_table.cpp | 36 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 D | BcSignedDataGenerator.java | 182 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()
|