/foundation/bundlemanager/bundle_framework/services/bundlemgr/test/mock/src/ |
H A D | installd_client.cpp | 302 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 D | mock_installd_host_impl.cpp | 168 ErrCode InstalldHostImpl::ApplyDiffPatch(const std::string &oldSoPath, const std::string &diffFilePath,
in ApplyDiffPatch() function in OHOS::AppExecFwk::InstalldHostImpl
|
H A D | mock_install_client.cpp | 187 ErrCode InstalldClient::ApplyDiffPatch( in ApplyDiffPatch() function in OHOS::AppExecFwk::InstalldClient
|
/foundation/bundlemanager/bundle_framework/services/bundlemgr/test/unittest/bms_install_daemon_test/ |
H A D | bms_install_daemon_host_impl_test.cpp | 354 * @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 D | bms_install_daemon_test.cpp | 698 * @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 D | bms_install_daemon_operator_test.cpp | 705 * @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 D | bms_install_daemon_ipc_test.cpp | 431 * @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 D | bms_bundle_installer_permission_test.cpp | 525 * @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 D | installd_client.cpp | 361 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 D | base_bundle_installer.cpp | 2703 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 D | installd_host_impl.h | 179 virtual ErrCode ApplyDiffPatch(const std::string &oldSoPath, const std::string &diffFilePath,
|
H A D | installd_operator.h | 233 static bool ApplyDiffPatch(const std::string &oldSoPath, const std::string &diffFilePath,
|
/foundation/bundlemanager/bundle_framework/services/bundlemgr/include/ |
H A D | installd_client.h | 165 ErrCode ApplyDiffPatch(const std::string &oldSoPath, const std::string &diffFilePath,
|
/foundation/bundlemanager/bundle_framework/services/bundlemgr/include/ipc/ |
H A D | installd_interface.h | 304 virtual ErrCode ApplyDiffPatch(const std::string &oldSoPath, const std::string &diffFilePath, in ApplyDiffPatch() function in OHOS::AppExecFwk::IInstalld
|
H A D | installd_proxy.h | 180 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 D | bms_installd_client_test.cpp | 983 * @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 D | installd_host_impl.cpp | 1160 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 D | installd_operator.cpp | 1226 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 D | quick_fix_deployer.cpp | 847 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 D | installd_host.cpp | 590 ErrCode result = ApplyDiffPatch(oldSoPath, diffFilePath, newSoPath, uid); in HandleApplyDiffPatch()
|
H A D | installd_proxy.cpp | 470 ErrCode InstalldProxy::ApplyDiffPatch(const std::string &oldSoPath, const std::string &diffFilePath, in ApplyDiffPatch() function in OHOS::AppExecFwk::InstalldProxy
|