Home
last modified time | relevance | path

Searched refs:HotaWrite (Results 1 – 5 of 5) sorted by relevance

/ohos5.0/base/update/sys_installer_lite/interfaces/kits/
H A Dhota_updater.h129 int HotaWrite(unsigned char *buffer, unsigned int offset, unsigned int buffSize);
/ohos5.0/docs/zh-cn/device-dev/subsystems/
H A Dsubsys-ota-guide.md337 2. 调用HotaWrite接口传入升级包数据流,接口内部实现校验、解析及写入升级数据流。
378 if (HotaWrite((unsigned char *)g_readBuf, offset, tmpLen) != 0) {
408 3. 调用HotaWrite接口传入升级包数据流,写入设备。
455 if (HotaWrite((unsigned char *)g_readBuf, offset, tmpLen) != 0) {
/ohos5.0/base/update/sys_installer_lite/frameworks/test/unittest/common/src/
H A Dota_test.cpp179 (void)HotaWrite(NULL, 0, 0); in HotaInterfaceTest()
199 if (HotaWrite(reinterpret_cast<unsigned char *>(g_readBuf), offset, tmpLen) != 0) { in HotaWriteTest()
/ohos5.0/docs/en/device-dev/subsystems/
H A Dsubsys-ota-guide.md337 2. Call the **HotaWrite** function to verify, parse, and write data streams for the update into the…
378 if (HotaWrite((unsigned char *)g_readBuf, offset, tmpLen) != 0) {
408 3. Call the **HotaWrite** function to write data streams into the device.
455 if (HotaWrite((unsigned char *)g_readBuf, offset, tmpLen) != 0) {
/ohos5.0/base/update/sys_installer_lite/frameworks/source/updater/
H A Dhota_updater.c620 int HotaWrite(unsigned char *buffer, unsigned int offset, unsigned int buffSize) in HotaWrite() function