Home
last modified time | relevance | path

Searched refs:tGeneralInfo (Results 1 – 3 of 3) sorted by relevance

/developtools/profiler/host/smartperf/client/client_ui/entry/src/main/ets/common/utils/
DCSVUtils.ts20 export function csvGeneralInfo(tGeneralInfo: TGeneralInfo): string {
22 for (let k of Object.keys(tGeneralInfo)) {
23 data += k + "," + tGeneralInfo[k] + "\n"
/developtools/profiler/host/smartperf/client/client_ui/entry/src/main/ets/common/profiler/
DProfilerTask.ets153 let tGeneralInfo = new TGeneralInfo(
164 tGeneralInfo.board = deviceInfo.brand
165 tGeneralInfo.deviceTypeName = deviceInfo.deviceType
166 tGeneralInfo.brand = deviceInfo.brand
167 tGeneralInfo.version = deviceInfo.displayVersion
168 tGeneralInfo.sn = deviceInfo.serial
169 database.insertGeneraData("t_general_info", tGeneralInfo)
170 …Context().filesDir + "/" + globalThis.dbTime + "/t_general_info.csv", csvGeneralInfo(tGeneralInfo))
/developtools/profiler/host/smartperf/client/client_ui/entry/src/main/ets/common/database/
DDatabaseUtils.ts48 insertGeneraData(tableName: string, tGeneralInfo: TGeneralInfo) {
50 for (let k of Object.keys(tGeneralInfo)) {
51 strMap.set(k, tGeneralInfo[k])
183 let tGeneralInfo = new TGeneralInfo( variable
186 tGeneralInfo.board = board
187 tGeneralInfo.deviceTypeName = deviceTypeName
188 tGeneralInfo.brand = brand
189 tGeneralInfo.version = version
190 tGeneralInfo.sn = sn
191 results.push(tGeneralInfo)