| /developtools/hapsigner/autosign/ |
| D | autosign.config | 24 // keypair of app signature 25 app.keypair.keyAlias=oh-app1-key-v1 26 app.keypair.keyPwd=123456 42 // Sub APP CA 43 sub-ca.app.keyAlias=oh-app-sign-srv-ca-key-v1 44 sub-ca.app.subject=C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA 45 sub-ca.app.outFile=app-sign-srv-ca1.cer 52 // App signature cert 53 cert.app.subject=C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN=App1 Release 54 cert.app.outFile=app1.pem [all …]
|
| D | createAppCertAndProfile.config | 24 // keypair of app signature 25 app.keypair.keyAlias=oh-app1-key-v1 26 app.keypair.keyPwd=123456 35 // Sub APP CA 36 sub-ca.app.keyAlias=openharmony application ca 37 sub-ca.app.subject=C=CN,O=OpenHarmony,OU=OpenHarmony Team,CN= OpenHarmony Application CA 38 sub-ca.app.outFile=subCA.cer 40 // App signature cert 41 cert.app.subject=C=CN,O=OpenHarmony,OU=OpenHarmony Team,CN=OpenHarmony Application Release 42 cert.app.outFile=app1.pem [all …]
|
| D | signHap.config | 20 // keypair of app signature 21 app.keypair.keyAlias=oh-app1-key-v1 22 app.keypair.keyPwd=123456 24 // App signature cert 25 cert.app.outFile=app1.pem 30 // Sign app 31 sign.app.inFile=app1-unsigned.hap 32 sign.app.outFile=app1-signed.hap 36 sign.app.keyAlias=$app.keypair.keyAlias 37 sign.app.appCertFile=$cert.app.outFile [all …]
|
| D | createRootAndSubCert.config | 32 // Sub APP CA 33 sub-ca.app.keyAlias=oh-app-sign-srv-ca-key-v1 34 sub-ca.app.subject=C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= Application Signature Service CA 35 sub-ca.app.outFile=app-sign-srv-ca1.cer 47 sub-ca.app.issuer=$root-ca.subject 48 sub-ca.app.issuerKeyAlias=$root-ca.keyAlias
|
| D | autosign.py | 40 'generate-app-cert': { 56 'sign-app': { 152 'sign.app': 'sign-app' 159 'sign.app': 'sign-app' 166 'app.keypair': 'generate-keypair', 170 'sub-ca.app': 'generate-ca', 172 'cert.app': 'generate-app-cert', 182 'sub-ca.app': 'generate-ca', 191 'app.keypair': 'generate-keypair', 192 'cert.app': 'generate-app-cert', [all …]
|
| /developtools/packing_tool/adapter/ohos/ |
| D | ModuleAppInfo.java | 32 * Indicates the bundleName of app AppJson. 37 * Indicates the debug of app AppJson. 41 * Indicates the icon of app AppJson. 45 * Indicates the label of app AppJson. 49 * Indicates the description of app AppJson. 53 * Indicates the vendor of app AppJson. 57 * Indicates the versionCode of app AppJson. 61 * Indicates the versionName of app AppJson. 65 * Indicates the minCompatibleVersionCode of app AppJson. 69 * Indicates the minAPIVersion of app AppJson. [all …]
|
| D | AppInfo.java | 24 * App AppInfo info. 29 * Indicates the bundleName of app AppInfo. 34 * Indicates the vendor of app AppInfo. 39 * Indicates the relatedBundleName of app AppInfo. 44 * Indicates the versionName of app AppInfo. 49 * Indicates the versionCode of app AppInfo. 54 * Indicates the target Api Version of app AppInfo. 59 * Indicates the compatible Api Version of app AppInfo. 64 * Indicates the appName of app AppInfo. 69 * Indicates the appNameEN of app AppInfo. [all …]
|
| D | DeviceConfig.java | 19 * App DeviceConfig info. 24 * Indicates the target request Sdk Version of app DeviceConfig. 30 * Indicates the compatible request Sdk Version of app DeviceConfig. 36 * Indicates the jointUserid of app DeviceConfig. 41 * Indicates the process of app DeviceConfig. 46 * Indicates the arkFlag of app DeviceConfig. 52 * Indicates the targetArkVersion of app DeviceConfig. 58 * Indicates the compatibleArkVersion of app DeviceConfig. 64 * Indicates the directLaunch of app DeviceConfig. 70 * Indicates the distributedNotificationEnabled of app AppJson.
|
| D | README | 16 use commands for package hap or app. 19 1.When the app depends on a hap, you need to wait the hap has been packaged, 22 For example: --mode hap --mode app 23 the mode value is app. 25 For example: --mode hap app 38 9.In app package mode, signature and certificate may be resource files later, 89 APP USAGE: 93 APP MODE OPTIONS: 94 --mode not null must be app. 99 --out-path not null target app binary path,must end with .app. [all …]
|
| D | VerifyCollection.java | 22 * collection of members in app fields, 23 * those members will be verified when pack app. 27 * Indicates the bundleName of app. 32 * Indicates the vendor of app. 44 * Indicates the minCompatibleVersionCode of app. 48 * Indicates the minApiVersion of app. 52 * Indicates the targetApiVersion of app. 56 * Indicates the apiReleaseType of app. 61 * Indicates the moduleNames of app. 65 * Indicates the packageNames of app. [all …]
|
| D | CommonEvent.java | 22 * App CommonEvent info. 27 * Indicates the name of app CommonEvent. 32 * Indicates the permission of app CommonEvent. 37 * Indicates the data of app CommonEvent. 42 * Indicates the type of app CommonEvent. 47 * Indicates the events of app CommonEvent.
|
| D | Shortcut.java | 22 * App Shortcut info. 27 * Indicates the shortcutId of app Shortcut. 32 * Indicates the label of app Shortcut. 37 * Indicates the icon of app Shortcut. 42 * Indicates the intents of app Shortcut.
|
| D | ModuleJsonUtil.java | 30 private static final String APP = "app"; field in ModuleJsonUtil 105 if (jsonObject.containsKey(APP)) { in parseStageVersion() 106 JSONObject appObj = jsonObject.getJSONObject(APP); in parseStageVersion() 121 String errMsg = "ModuleJsonUtil:parseStageVersion json file do not contain app."; in parseStageVersion() 146 JSONObject appObj = jsonObject.getJSONObject(APP); in parseFaVersion() 148 LOG.error("ModuleJsonUtil:parseFaVersion failed : json file do not contain app."); in parseFaVersion() 149 … throw new BundleException("ModuleJsonUtil:parseFaVersion failed : json file do not contain app."); in parseFaVersion() 184 return APP; in parseFaBundleType() 203 JSONObject appObj = jsonObject.getJSONObject(APP); in parseStageModuleApiVersion() 205 LOG.error("ModuleJsonUtil:parseFaVersion failed : json file do not contain app."); in parseStageModuleApiVersion() [all …]
|
| /developtools/profiler/host/smartperf/client/client_ui/entry/src/main/ets/common/ui/detail/ |
| D | PowerDubai.ets | 44 …orInfo("","Toal",sumPower.toFixed(5)+"",sumCurrent.toFixed(5)+"","100%",$r("app.color.color_fff"))) 45 … TPowerSensorInfo("","Sensor","Power(mAh)","Current(mA)","Percent(%)", $r("app.color.colorPrimary"… 48 it.setColor($r("app.color.color_fff")) 50 …rAppInfo("", "", "ProcessName", "Power(mAh)", "Current(mA)", "Percent",$r("app.color.colorPrimary"… 60 …}.fontWeight(FontWeight.Bold).fontColor($r("app.color.color_333")).fontSize('12fp').textAlign(Text… 68 .fontColor($r("app.color.color_333")) 71 .border({ width: '1vp', color: $r("app.color.color_999") }) 77 // .fontColor($r("app.color.color_333")) 80 // .border({ width: '1vp', color: $r("app.color.color_999") }) 86 .fontColor($r("app.color.color_333")) [all …]
|
| D | Summary.ets | 138 …new SummaryItem($r("app.media.icon_normalized_current"), "归一化电流", (normalCurrentNow / this.gpData.… 144 …new SummaryItem($r("app.media.icon_max_temperature"), "soc温度", (socThermalTemp / this.gpData.lengt… 150 …new SummaryItem($r("app.media.icon_max_temperature"), "壳温", (shellFrameTempSum / this.gpData.lengt… 155 …new SummaryItem($r("app.media.icon_jank_score"), "平均帧率", (fpsSum / (this.gpData.length - fpsNullSu… 156 … new SummaryItem($r("app.media.icon_jank_score"), "最高帧率", (fpsMax).toFixed(0) + "HZ", "#fcf4ee"), 157 …new SummaryItem($r("app.media.icon_jank_score"), "低帧率", (calculationTest.Low_Frame_Rate()).toFixed… 158 …new SummaryItem($r("app.media.icon_jank_score"), "抖动率", (calculationTest.Jitter_rate()).toFixed(2)… 159 …new SummaryItem($r("app.media.icon_jank_score"), "卡顿次数", (calculationTest.calculateCaton(fpsJitter… 161 $r("app.media.icon_frame_score"), "GPU负载", 164 …new SummaryItem($r("app.media.icon_frame_score"), "DDR频率", (ddrFreqSum / this.gpData.length / 1e6)… [all …]
|
| /developtools/profiler/host/smartperf/client/client_ui/entry/src/main/ets/common/ui/main/ |
| D | HomeBottomPage.ets | 30 Image($r('app.media.icon_home_selected')).width(this.imgW).height(this.imgH) 31 Text('首页').fontSize('12vp').fontColor($r("app.color.colorPrimary")) 33 Image($r('app.media.icon_home_unselected')).width(this.imgW).height(this.imgH) 40 .backgroundColor($r("app.color.color_fff")) 46 Image($r('app.media.icon_report_selected')).width(this.imgW).height(this.imgH) 47 Text('报告').fontSize('12vp').fontColor($r("app.color.colorPrimary")) 49 Image($r('app.media.icon_report_unselected')).width(this.imgW).height(this.imgH) 56 .backgroundColor($r("app.color.color_fff")) 62 Image($r('app.media.icon_mine_selected')).width(this.imgW).height(this.imgH) 63 Text('我的').fontSize('12vp').fontColor($r("app.color.colorPrimary")) [all …]
|
| D | Home.ets | 62 .fontColor($r("app.color.color_fff")) 72 .border({ radius: '90vp', width: '0.5vp', color: $r("app.color.color_fff") }) 76 colors: [[$r("app.color.color_80B3193F"), 0.0], [$r("app.color.color_80fff"), 1.0]] 80 .fontColor($r('app.color.color_fff')) 91 .border({ width: '1vp', radius: this.circleRadius, color: $r("app.color.color_80fff") }) 112 Text(this.state.toString()).fontSize(12).height('5%').fontColor($r("app.color.color_fff")) 115 .fontColor($r("app.color.color_fff")) 119 }.backgroundColor($r('app.color.colorPrimary')).width('100%') 135 new OtherSupport('亮度调节', '调节屏幕亮度', TestMode.BRIGHTNESS, $r("app.media.icon_brightness_plus")) 149 .fontColor($r("app.color.color_333")) [all …]
|
| D | Mine.ets | 29 Image($r('app.media.person')) 42 Image($r('app.media.test_apps_count')) 57 Image($r('app.media.test_session_count')) 72 Image($r('app.media.test_times_count')) 90 Image($r('app.media.question')).width('20vp').height('20vp').margin({ left: '10vp' }) 104 Image($r('app.media.settings')) 121 }.backgroundColor($r('app.color.colorPrimary'))
|
| /developtools/ace_ets2bundle/compiler/test/ut/import/ |
| D | importSystemApi.ts | 18 import { app } from "@system.router"; 22 import { app1, app2 } = require('@system.app'); 26 import app from "@system.router" 30 import app = require('@system.app') 45 var { app } = globalThis.requireNativeModule('system.router'); 48 var { app1, app2 } = globalThis.requireNativeModule('system.app'); 51 var app = globalThis.requireNativeModule('system.router'); 54 var app = globalThis.requireNativeModule('system.app');
|
| /developtools/hapsigner/hapsigntool/hap_sign_tool/src/main/resources/ |
| D | help.txt | 16 USAGE: <generate-keypair|generate-csr|generate-cert|generate-ca|generate-app-cert|generate-profile-… 17 USAGE: <sign-profile|verify-profile|sign-app|verify-app> [options] 29 …ey-v1" -keyPwd ****** -keyAlg ECC -keySize NIST-P-256 -keystoreFile "D:\OH\app-keypair.jks" -keyst… 43 …Community,CN=App1 Release" -signAlg SHA256withECDSA -keystoreFile "D:\OH\app-keypair.jks" -keyst… 70 …app-sign-srv-ca-key-v1" -issuerKeyPwd ****** -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Communit… 92 …,CN=Root CA" -validity 365 -signAlg SHA384withECDSA -keystoreFile "D:\OH\app-keypair.jks" -keyst… 93 …app-ca-key-v1" -issuerKeyPwd ****** -subject "C=CN,O=OpenHarmony,OU=OpenHarmony Community,CN= App… 96 generate-app-cert [options]: 116 …app-cert -keyAlias "oh-app1-key-v1" -keyPwd ****** -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Comm… 117 …app-cert -keyAlias "oh-app1-key-v1" -keyPwd ****** -issuer "C=CN,O=OpenHarmony,OU=OpenHarmony Comm… [all …]
|
| /developtools/profiler/host/smartperf/client/client_ui/entry/src/main/ets/pages/ |
| D | LoginPage.ets | 23 Image($r('app.media.logo')).width('100vp').height('100vp').margin({ top: '180vp' }) 25 Text($r('app.string.login')) 27 .fontColor($r('app.color.color_fff')) 30 .border({ width: '1vp', color: $r('app.color.color_fff'), radius: '20vp' }) 46 colors: [[$r("app.color.colorPrimary"), 0.0], [$r("app.color.colorPrimary"), 1.0]]
|
| D | StartTestPage.ets | 38 new SwitchItem("trace", '是否抓取trace', $r("app.media.icon_average_frame_b"), false, true), 39 new SwitchItem("screen_capture", '是否开启截图', $r("app.media.icon_screencap"), false, true) 95 Image($r('app.media.logo')).width('70vp').height('70vp').margin({ left: '2%' }) 100 Text(this.selectApp).fontSize('15fp').fontColor($r("app.color.color_333")) 102 … Image($r('app.media.icon_enter')).width('15vp').height('15vp').margin({ right: '35vp' }) 108 .backgroundColor($r("app.color.color_fff")) 118 … Image($r('app.media.icon_test_index')).width('25vp').height('25vp').margin({ left: '2%' }) 121 Text('测试指标').fontSize('15fp').fontColor($r("app.color.color_333")) 123 … Image($r('app.media.icon_enter')).width('15vp').height('15vp').margin({ right: '15vp' }) 127 console.log("TestIndicators---------please choose app") [all …]
|
| D | SettingsPage.ets | 31 Image($r('app.media.icon_language')).width('25vp').height('25vp').margin({ left: '2%' }) 34 Text('语言切换').fontSize('15fp').fontColor($r("app.color.color_333")) 36 Image($r('app.media.icon_enter')).width('15vp').height('15vp').margin({ left: '15vp' }) 38 … }.height('47vp').width('95%').backgroundColor($r("app.color.color_fff")).margin({ top: '10vp' }) 44 .fontColor($r('app.color.color_fff')) 47 .backgroundColor($r("app.color.colorPrimary"))
|
| D | TitleWindowPage.ets | 125 Image($r("app.media.logo")).width(10).height(10).margin({ left: '2%' }) 128 .fontColor($r("app.color.color_fff")).margin({ left: '2%' }) 129 …Image($r("app.media.icon_close_small")).height(15).width(15).margin({ left: '45%' }).onClick(() =>… 139 icon: $r("app.media.icon_average_frame_b"), 150 icon: $r("app.media.icon_normalized_current"), 160 icon: $r("app.media.icon_counter"), 171 icon: $r("app.media.icon_counter"), 182 icon: $r("app.media.icon_counter"), 193 icon: $r("app.media.icon_counter"), 204 icon: $r("app.media.icon_frame_score"), [all …]
|
| /developtools/hapsigner/ |
| D | OAT.xml | 51 … <filteritem type="filename" name="OpenHarmony.p12" desc="Keystore used in OpenHarmony app sign"/> 52 …<filteritem type="filename" name="ohnull.p12" desc="Keystore used in OpenHarmony app sign of test … 53 …<filteritem type="filename" name="ohtest_nopass.jks" desc="Keystore used in OpenHarmony app sign o… 54 …<filteritem type="filename" name="ohtest_pass.jks" desc="Keystore used in OpenHarmony app sign of … 55 …<filteritem type="filename" name="app1-unsigned.hap" desc="Keystore used in OpenHarmony app sign o… 56 <filteritem type="filename" name="*.pem" desc="OpenHarmony app sign certificates"/> 57 <filteritem type="filename" name="*.jar" desc="OpenHarmony app sign tool"/>
|