Home
last modified time | relevance | path

Searched refs:pss (Results 1 – 25 of 42) sorted by relevance

12

/developtools/profiler/host/smartperf/client/client_ui/entry/src/main/ets/pages/
DRAMLineChartPage.ets24 @State pss: number= 0 //数值
39 if (globalThis.pss == undefined || isNaN(globalThis.pss)) {
40 this.pss = 0
42 this.pss = globalThis.pss
44 if (this.pss == 0) {
47 let lineCount: number = this.pss / 1500
68 Text( this.pss + "KB")
DTitleWindowPage.ets86 globalThis.pss = that.tIndexInfo.pss
190 if (this.tIndexInfo.pss != undefined) {
193 value: this.tIndexInfo.pss + "KB",
/developtools/smartperf_host/ide/src/trace/component/trace/sheet/smaps/
DTabPaneSmapsComparison.ts99 smapsComResults[i].pss,
119 results[i].pss,
148 diffItem!.pss = diffItem!.pss - item.pss;
213 pss: number; property in SmapsCompareStruct
227 pss: number,
240 this.pss = pss;
257 this.pss,
272 -this.pss,
DTabPaneSmapsStatistics.ts117 smapsTreeObj.pssStr = Utils.getBinaryByteWithUnit(smapsTreeObj.pss);
146 objTree.pss = smaps.pss;
147 objTree.pssStr = Utils.getBinaryByteWithUnit(smaps.pss);
155 smapsStatAllDataTree.pss += smaps.pss;
173 treeObj.pss = smaps.pss;
174 treeObj.pssStr = Utils.getBinaryByteWithUnit(smaps.pss);
200 smapsStatDataTree.pss += smaps.pss;
371 return sort === 1 ? previous.pss - next.pss : next.pss - previous.pss;
DTabPaneSmapsRecord.ts97 smaps.pssStr = Utils.getBinaryByteWithUnit(smaps.pss);
/developtools/profiler/host/smartperf/ide/src/trace/component/trace/sheet/smaps/
DTabPaneSmapsStatistics.ts107 smapsTreeObj.pssStr = Utils.getBinaryByteWithUnit(smapsTreeObj.pss * 1024);
125 objTree.pss = smaps.pss;
126 objTree.pssStr = Utils.getBinaryByteWithUnit(smaps.pss * 1024);
138 dataTree.pss += smaps.pss;
156 treeObj.pss = smaps.pss;
157 treeObj.pssStr = Utils.getBinaryByteWithUnit(smaps.pss * 1024);
168 dataTree.pss += smaps.pss;
DTabPaneSmapsRecord.ts73 smaps.pssStr = Utils.getBinaryByteWithUnit(smaps.pss * 1024);
/developtools/profiler/device/plugins/memory_plugin/test/unittest/
Dsmaps_stats_unittest.cpp261 EXPECT_EQ(expect.pss, target.pss);
287 EXPECT_EQ(expect.pss, target.pss);
316 EXPECT_EQ(expect.pss, target.pss);
344 EXPECT_EQ(expect.pss, target.pss);
370 EXPECT_EQ(expect.pss, target.pss);
396 EXPECT_EQ(expect.pss, target.pss);
422 EXPECT_EQ(expect.pss, target.pss);
448 EXPECT_EQ(expect.pss, target.pss);
476 EXPECT_EQ(expect.pss, target.pss);
502 EXPECT_EQ(expect.pss, target.pss);
[all …]
/developtools/smartperf_host/ide/test/trace/bean/
DSmapsStruct.test.ts30 pss: 0,
53 pss: expect.any(Number),
108 pss: 0,
133 pss: expect.any(Number),
/developtools/smartperf_host/ide/test/trace/component/trace/sheet/smaps/
DTabPaneSmapsRecord.test.ts53 pss: 0,
76 smaps.pss = 0;
88 smaps.pss = 2;
DTabPaneSmapsStatistics.test.ts65 smaps.pss = 0;
77 smaps.pss = 2;
96 expect(dataTree.pss).toBe(2);
DTabPaneSmapsComparison.test.ts59 smaps.pss = 0;
71 smaps.pss = 2;
/developtools/profiler/host/smartperf/ide/src/trace/bean/
DSmapsStruct.ts24 pss: number = 0; property in Smaps
59 pss: number = 0; property in SmapsTreeObj
DAbilityMonitor.ts66 pss: number = -1; property in ProcessHistory
/developtools/smartperf_host/ide/src/trace/bean/
DSmapsStruct.ts30 pss: number = 0; property in Smaps
57 pss: number = 0; property in SmapsTreeObj
DAbilityMonitor.ts68 pss: number = -1; property in ProcessHistory
/developtools/profiler/host/smartperf/client/client_ui/entry/src/main/ets/common/entity/
DDatabaseEntity.ets180 public pss: String;
242 pss?: String,
278 this.pss = pss
347 setRamData(pss: String) {
348 this.pss = pss
/developtools/profiler/device/plugins/memory_plugin/src/
Dsmaps_stats.cpp113 smapsInfo->set_pss(memusage.pss); in ReadVmemareasFile()
304 memusage.pss = strtoull(c, nullptr, DEC_BASE); in GetMemUsageField()
349 if (!swappable || (memusage.pss == 0)) { in GetSwapablepssValue()
356 int proportion = (memusage.pss - memusage.uss) / (memusage.sharedClean + memusage.sharedDirty); in GetSwapablepssValue()
/developtools/profiler/hidebug/interfaces/js/kits/napi/
Dnapi_hidebug.cpp357 napi_value pss; in GetPss() local
362 napi_create_bigint_uint64(env, pssInfo, &pss); in GetPss()
364 napi_create_bigint_uint64(env, 0, &pss); in GetPss()
366 return pss; in GetPss()
/developtools/smartperf_host/trace_streamer/test/unittest/
Dsmaps_parser_test.cpp105 uint64_t pss = 112; variable
113 SmapsInfo->set_pss(pss);
140 EXPECT_TRUE(stream_.traceDataCache_->GetConstSmapsData().Pss()[0] == pss);
/developtools/profiler/host/smartperf/client/client_ui/entry/src/main/ets/common/profiler/item/
DRAM.ets59 this.ramMap.set("pss", extractNumber(curRAM))
/developtools/profiler/device/plugins/memory_plugin/include/
Dsmaps_stats.h36 uint64_t pss; member
74 : pss_(usage.pss), in StatsInfo()
/developtools/profiler/protos/types/plugins/memory_data/
Dmemory_plugin_result.proto40 uint64 pss = 7; field
/developtools/profiler/host/smartperf/client/client_ui/
DREADME_zh.md94 | pss | 应用实际使用的物理内存,.单位一般是KB。|
/developtools/profiler/host/smartperf/trace_streamer/src/protos/types/plugins/memory_data/
Dmemory_plugin_result.proto40 uint64 pss = 7; field

12