Home
last modified time | relevance | path

Searched refs:ApplyDiffPatch (Results 1 - 21 of 21) sorted by relevance

/foundation/bundlemanager/bundle_framework/services/bundlemgr/test/mock/src/
H A Dinstalld_client.cpp302 ErrCode InstalldClient::ApplyDiffPatch(const std::string &oldSoPath, const std::string &diffFilePath, in ApplyDiffPatch() function in OHOS::AppExecFwk::InstalldClient
308 return CallService(&IInstalld::ApplyDiffPatch, oldSoPath, diffFilePath, newSoPath, uid); in ApplyDiffPatch()
H A Dmock_installd_host_impl.cpp168 ErrCode InstalldHostImpl::ApplyDiffPatch(const std::string &oldSoPath, const std::string &diffFilePath, in ApplyDiffPatch() function in OHOS::AppExecFwk::InstalldHostImpl
H A Dmock_install_client.cpp187 ErrCode InstalldClient::ApplyDiffPatch( in ApplyDiffPatch() function in OHOS::AppExecFwk::InstalldClient
/foundation/bundlemanager/bundle_framework/services/bundlemgr/test/unittest/bms_install_daemon_test/
H A Dbms_install_daemon_host_impl_test.cpp354 * @tc.desc: 1. calling ApplyDiffPatch of hostImpl
362 auto ret = hostImpl->ApplyDiffPatch(TEST_STRING, TEST_STRING, TEST_STRING, 0); in HWTEST_F()
754 * @tc.desc: 1. calling ApplyDiffPatch of hostImpl
762 auto ret = hostImpl->ApplyDiffPatch("", TEST_STRING, TEST_STRING, 0); in HWTEST_F()
764 ret = hostImpl->ApplyDiffPatch(TEST_STRING, "", TEST_STRING, 0); in HWTEST_F()
766 ret = hostImpl->ApplyDiffPatch("", "", TEST_STRING, 0); in HWTEST_F()
H A Dbms_install_daemon_test.cpp698 * @tc.name: Test ApplyDiffPatch, a param is empty
699 * @tc.desc: 1.Test the ApplyDiffPatch of InstalldClient
708 ErrCode ret = InstalldClient::GetInstance()->ApplyDiffPatch("", TEST_STRING, TEST_STRING, 0); in HWTEST_F()
710 ret = InstalldClient::GetInstance()->ApplyDiffPatch(TEST_STRING, "", TEST_STRING, 0); in HWTEST_F()
712 ret = InstalldClient::GetInstance()->ApplyDiffPatch(TEST_STRING, TEST_STRING, "", 0); in HWTEST_F()
714 ret = InstalldClient::GetInstance()->ApplyDiffPatch( in HWTEST_F()
H A Dbms_install_daemon_operator_test.cpp705 * @tc.desc: 1. calling ApplyDiffPatch of InstalldOperator
710 bool ret = InstalldOperator::ApplyDiffPatch("", "", TEST_PATH, 0); in HWTEST_F()
1775 * @tc.desc: 1. calling ApplyDiffPatch of InstalldOperator
1781 auto ret = InstalldOperator::ApplyDiffPatch(TEST_FILE_PATH, TEST_FILE_PATH, newSoPath, 1); in HWTEST_F()
H A Dbms_install_daemon_ipc_test.cpp431 * @tc.desc: 1. calling ApplyDiffPatch of proxy
439 auto ret = proxy->ApplyDiffPatch(TEST_STRING, TEST_STRING, TEST_STRING, 0); in HWTEST_F()
/foundation/bundlemanager/bundle_framework/services/bundlemgr/test/unittest/bms_bundle_installer_test/
H A Dbms_bundle_installer_permission_test.cpp525 * @tc.name: test ApplyDiffPatch
526 * @tc.desc: test ApplyDiffPatch of InstalldHostImpl without permission
535 ErrCode ret = installdHostImpl.ApplyDiffPatch(oldSoPath, diffFilePath, newSoPath, uid); in HWTEST_F()
538 ret = installdHostImpl.ApplyDiffPatch(oldSoPath, diffFilePath, newSoPath, uid); in HWTEST_F()
/foundation/bundlemanager/bundle_framework/services/bundlemgr/src/
H A Dinstalld_client.cpp361 ErrCode InstalldClient::ApplyDiffPatch(const std::string &oldSoPath, const std::string &diffFilePath, in ApplyDiffPatch() function in OHOS::AppExecFwk::InstalldClient
368 return CallService(&IInstalld::ApplyDiffPatch, oldSoPath, diffFilePath, newSoPath, uid); in ApplyDiffPatch()
H A Dbase_bundle_installer.cpp2703 ret = InstalldClient::GetInstance()->ApplyDiffPatch(oldSoPath, tempDiffPath, newSoPath, bundleUid); in ProcessDiffFiles()
2705 LOG_E(BMS_TAG_INSTALLER, "error: ApplyDiffPatch failed errcode :%{public}d", ret); in ProcessDiffFiles()
/foundation/bundlemanager/bundle_framework/services/bundlemgr/include/installd/
H A Dinstalld_host_impl.h179 virtual ErrCode ApplyDiffPatch(const std::string &oldSoPath, const std::string &diffFilePath,
H A Dinstalld_operator.h233 static bool ApplyDiffPatch(const std::string &oldSoPath, const std::string &diffFilePath,
/foundation/bundlemanager/bundle_framework/services/bundlemgr/include/
H A Dinstalld_client.h165 ErrCode ApplyDiffPatch(const std::string &oldSoPath, const std::string &diffFilePath,
/foundation/bundlemanager/bundle_framework/services/bundlemgr/include/ipc/
H A Dinstalld_interface.h304 virtual ErrCode ApplyDiffPatch(const std::string &oldSoPath, const std::string &diffFilePath, in ApplyDiffPatch() function in OHOS::AppExecFwk::IInstalld
H A Dinstalld_proxy.h180 virtual ErrCode ApplyDiffPatch(const std::string &oldSoPath, const std::string &diffFilePath,
/foundation/bundlemanager/bundle_framework/services/bundlemgr/test/unittest/bms_installd_client_test/
H A Dbms_installd_client_test.cpp983 * @tc.name: ApplyDiffPatch
984 * @tc.desc: Test whether ApplyDiffPatch is called normally.(oldSoPath is empty)
992 ErrCode result = installClient_->ApplyDiffPatch(oldSoPath, diffFilePath, newSoPath, 0); in HWTEST_F()
999 * @tc.name: ApplyDiffPatch
1000 * @tc.desc: Test whether ApplyDiffPatch is called normally.(diffFilePath is empty)
1008 ErrCode result = installClient_->ApplyDiffPatch(oldSoPath, diffFilePath, newSoPath, 0); in HWTEST_F()
1015 * @tc.name: ApplyDiffPatch
1016 * @tc.desc: Test whether ApplyDiffPatch is called normally.(newSoPath is empty)
1024 ErrCode result = installClient_->ApplyDiffPatch(oldSoPath, diffFilePath, newSoPath, 0); in HWTEST_F()
1031 * @tc.name: ApplyDiffPatch
[all...]
/foundation/bundlemanager/bundle_framework/services/bundlemgr/src/installd/
H A Dinstalld_host_impl.cpp1160 ErrCode InstalldHostImpl::ApplyDiffPatch(const std::string &oldSoPath, const std::string &diffFilePath, in ApplyDiffPatch() function in OHOS::AppExecFwk::InstalldHostImpl
1171 if (!InstalldOperator::ApplyDiffPatch(oldSoPath, diffFilePath, newSoPath, uid)) { in ApplyDiffPatch()
1172 LOG_E(BMS_TAG_INSTALLD, "fail to ApplyDiffPatch errno:%{public}d", errno); in ApplyDiffPatch()
H A Dinstalld_operator.cpp1226 bool InstalldOperator::ApplyDiffPatch(const std::string &oldSoPath, const std::string &diffFilePath, in ApplyDiffPatch() function in OHOS::AppExecFwk::InstalldOperator
1229 LOG_I(BMS_TAG_INSTALLD, "ApplyDiffPatch no need to process"); in ApplyDiffPatch()
/foundation/bundlemanager/bundle_framework/services/bundlemgr/src/quick_fix/
H A Dquick_fix_deployer.cpp847 ret = InstalldClient::GetInstance()->ApplyDiffPatch(oldSoPath, diffFilePath, newSoPath, uid); in ProcessApplyDiffPatch()
849 LOG_E(BMS_TAG_DEFAULT, "ApplyDiffPatch failed, bundleName:%{public}s, errcode: %{public}d", in ProcessApplyDiffPatch()
/foundation/bundlemanager/bundle_framework/services/bundlemgr/src/ipc/
H A Dinstalld_host.cpp590 ErrCode result = ApplyDiffPatch(oldSoPath, diffFilePath, newSoPath, uid); in HandleApplyDiffPatch()
H A Dinstalld_proxy.cpp470 ErrCode InstalldProxy::ApplyDiffPatch(const std::string &oldSoPath, const std::string &diffFilePath, in ApplyDiffPatch() function in OHOS::AppExecFwk::InstalldProxy

Completed in 41 milliseconds