Home
last modified time | relevance | path

Searched refs:OTA (Results 1 – 22 of 22) sorted by relevance

/base/update/sys_installer_lite/
DREADME_zh.md1 # OTA组件<a name="ZH-CN_TOPIC_0000001078451366"></a>
13 OTA(Over the Air)提供对设备远程升级能力,基于提供的接口进行二次开发后,可以让您的设备轻松支持OTA升级能力。升级子系统对用户屏蔽了底层芯片的差异,对外提供了统一的升级接口。
26 ├── frameworks # OTA升级实现,主要包括升级包解析验证、写入、升级的功能
34 └── kits # OTA升级接口
80 - 添加完上述的配置后,执行如下命令编译整个系统,烧录到3516芯片平台上即可体验OTA功能。
DREADME.md1 # OTA<a name="EN-US_TOPIC_0000001078451366"></a>
11 Over the Air \(OTA\) provides the remote device update capability. Your devices will be able to sup…
18 ├── frameworks # OTA update implementation, including update package parsing, verification,…
26 └── kits # OTA update APIs
70 - Run the following commands to compile the system. You can experience the OTA update function af…
/base/update/updater/services/ui/include/
Dupdater_ui_const.h28 OTA, enumerator
/base/update/update_app/feature/ota/src/main/ets/
DOtaPage.ets39 return component.componentType == update.ComponentType.OTA;
63 dialogType: isABInstall ? CountDownDialogType.OTA_AB : CountDownDialogType.OTA
78 return component.componentType == update.ComponentType.OTA;
/base/update/updater/services/ui/strategy/
Dui_strategy.cpp57 {UpdaterMode::OTA, "ota"},
85 constexpr std::array strategies {UpdaterMode::OTA, UpdaterMode::FACTORYRST, in LoadStrategy()
/base/update/updateservice/services/firmware/common/src/
Dfirmware_update_helper.cpp67 hotaVersionComponent.componentType = CAST_INT(ComponentType::OTA); in BuildHotaVersionComponent()
119 hotaVersionComponent.componentType = CAST_INT(ComponentType::OTA); in BuildCurrentVersionInfo()
/base/update/update_app/common/src/main/ets/const/
Dupdate_const.ts423 OTA = 0, enumerator
/base/update/updater/test/unittest/updater_ui_test/strategy/
Dui_strategy_unittest.cpp94 {UpdaterMode::REBOOTFACTORYRST, rebootFactoryRstCfg}, {UpdaterMode::OTA, defaultCfg},
/base/update/updater/
Dupdater.md103 ### OTA升级
Dupdater_ux_guide.md3 updater部件是在升级模式下的轻量小系统,ux组件是一套系统交互界面,提供OTA升级过程中的界面显示和信息提示,指导用户完成升级流程。组件不依赖ArkUI框架,无需引入JS,具有界面简洁、外部依…
/base/update/updateservice/services/firmware/upgrade/flow/src/
Dfirmware_manager.cpp376 versionComponent.componentType = CAST_INT(ComponentType::OTA); in HandleBootUpdateSuccess()
403 versionComponent.componentType = CAST_INT(ComponentType::OTA); in HandleBootUpdateFail()
/base/update/updateservice/interfaces/kits/js/declaration/
D@ohos.update.d.ts1510 OTA = 1 enumerator
/base/update/update_app/feature/ota/src/main/ets/util/
DVersionUtils.ets128 return component.componentType == update.ComponentType.OTA;
/base/update/update_app/feature/ota/src/main/ets/dialog/
DCountDownInstallDialogBuilder.ets99 if (this.dialogType == CountDownDialogType.OTA) {
/base/update/updateservice/
DREADME_zh.md105 let updater = client.getUpdater('OTA');
DREADME.md105 let updater = client.getUpdater('OTA');
/base/update/updateservice/frameworks/js/napi/base/src/
Ddefine_property.cpp105 DECLARE_ENUM_PROPERTY(ComponentType::OTA), in DefineComponentType()
Dclient_helper.cpp528 static const std::list enumList = { ComponentType::OTA }; in ParseUpgradeFile()
/base/update/sys_installer/services/module_update/
D模块升级编译打包和使用指南.md6 …cation Binary Interface)稳定的前提下,将系统按模块、服务、或库进行解耦,实现独立打包、独立升级的能力。模块化升级可解决系统的模块解耦,各模块可独立于OTA版本进行发布和演进。
/base/update/updateservice/interfaces/inner_api/include/
Dupdate_helper.h117 OTA = 1 enumerator
/base/update/update_app/product/oh/base/src/main/ets/pages/
DnewVersion.ets63 private dialogType: CountDownDialogType = CountDownDialogType.OTA;
/base/update/updater/services/
Dupdater_main.cpp558 (void)UPDATER_UI_INSTANCE.SetMode(UpdaterMode::OTA); in StartUpdater()