Searched refs:Flashd (Results 1 – 25 of 27) sorted by relevance
12
/base/update/updater/services/flashd/ |
D | Readme.md | 1 # 升级子系统Flashd使用指导<a name="ZH-CN_TOPIC_0000001148614629"></a> 14 Flashd是OpenHarmony升级子系统的一个刷机模式,可以提供格式化用户分区,擦除分区,刷写镜像,zip格式整包升级的功能。 15 Flashd分为客户端和服务端,客户端提供统一的用户界面,服务端提供对应的功能服务,二者之间通过HDC作为数据传输通道。 20 1. 如何进入Flashd模式 23 设备就会重启进入Flashd模式。 25 2. 如何退出Flashd模式 28 设备就会退出Flashd模式重启到正常系统。
|
D | partition.h | 23 namespace Flashd {
|
D | partition.cpp | 27 namespace Flashd { namespace
|
/base/update/updater/services/flashd/daemon/ |
D | daemon_updater.cpp | 69 bool DaemonUpdater::SendToHost(Flashd::CmdType type, Flashd::UpdaterState state, const std::string … in SendToHost() 76 if (state == Flashd::UpdaterState::DOING) { in SendToHost() 87 if (state == Flashd::UpdaterState::FAIL || state == Flashd::UpdaterState::SUCCESS) { in SendToHost() 88 …uint8_t percentage = (state == Flashd::UpdaterState::SUCCESS) ? Flashd::PERCENT_FINISH : Flashd::P… in SendToHost() 94 buffer.push_back((state == Flashd::UpdaterState::SUCCESS) ? Hdc::MSG_OK : Hdc::MSG_FAIL); in SendToHost() 107 std::unique_ptr<Flashd::Commander> DaemonUpdater::CreateCommander(const std::string &cmd) in CreateCommander() 114 … auto callback = [this](Flashd::CmdType type, Flashd::UpdaterState state, const std::string &msg) { in CreateCommander() 117 return Flashd::CommanderFactory::GetInstance().CreateCommander(cmd, callback); in CreateCommander()
|
D | daemon_updater.h | 38 bool SendToHost(Flashd::CmdType type, Flashd::UpdaterState state, const std::string &msg); 39 std::unique_ptr<Flashd::Commander> CreateCommander(const std::string &cmd); 43 std::unique_ptr<Flashd::Commander> commander_ = nullptr;
|
D | commander_factory.h | 25 namespace Flashd {
|
D | erase_commander.h | 21 namespace Flashd {
|
D | format_commander.h | 22 namespace Flashd {
|
D | flashd_utils.h | 22 namespace Flashd {
|
D | update_commander.h | 21 namespace Flashd {
|
D | flash_commander.h | 21 namespace Flashd {
|
D | commander.cpp | 20 namespace Flashd { namespace
|
D | erase_commander.cpp | 23 namespace Flashd { namespace
|
D | commander_factory.cpp | 24 namespace Flashd { namespace
|
D | flashd_main.cpp | 22 namespace Flashd { namespace
|
D | commander.h | 22 namespace Flashd {
|
D | format_commander.cpp | 23 namespace Flashd { namespace
|
D | flashd_utils.cpp | 22 namespace Flashd { namespace
|
D | flash_commander.cpp | 25 namespace Flashd { namespace
|
/base/update/updater/services/ |
D | main.cpp | 40 Flashd::SetParameter(modePara, "1"); in main() 44 return Flashd::flashd_main(argc, argv); in main()
|
D | updater_utils.cpp | 142 if (access(Flashd::FLASHD_FILE_PATH, 0) == 0) { in PostUpdater() 143 …UPDATER_ERROR_CHECK_NOT_RETURN(DeleteUpdaterPath(Flashd::FLASHD_FILE_PATH), "DeleteUpdaterPath fai… in PostUpdater() 151 ret = CopyUpdaterLogs(Flashd::FLASHD_HDC_LOG_PATH, UPDATER_HDC_LOG); in PostUpdater()
|
/base/update/updater/services/include/flashd/ |
D | flashd.h | 21 namespace Flashd {
|
/base/update/updater/services/flashd/common/ |
D | flashd_define.h | 23 namespace Flashd {
|
/base/update/updater/services/flashd/image_writer/ |
D | image_writer.h | 26 namespace Flashd {
|
D | image_writer.cpp | 31 namespace Flashd { namespace
|
12