Home
last modified time | relevance | path

Searched refs:diffFilePath (Results 1 – 15 of 15) sorted by relevance

/ohos5.0/foundation/bundlemanager/bundle_framework/services/bundlemgr/test/unittest/bms_installd_client_test/
H A Dbms_installd_client_test.cpp992 std::string diffFilePath = DIFF_FILE_PATH; variable
994 ErrCode result = installClient_->ApplyDiffPatch(oldSoPath, diffFilePath, newSoPath, 0);
1008 std::string diffFilePath = EMPTY_STRING; variable
1010 ErrCode result = installClient_->ApplyDiffPatch(oldSoPath, diffFilePath, newSoPath, 0);
1024 std::string diffFilePath = DIFF_FILE_PATH; variable
1026 ErrCode result = installClient_->ApplyDiffPatch(oldSoPath, diffFilePath, newSoPath, 0);
1040 std::string diffFilePath = DIFF_FILE_PATH; variable
1042 ErrCode result = installClient_->ApplyDiffPatch(oldSoPath, diffFilePath, newSoPath);
1043 …t, installClient_->CallService(&IInstalld::ApplyDiffPatch, oldSoPath, diffFilePath, newSoPath, 0));
/ohos5.0/foundation/bundlemanager/bundle_framework/services/bundlemgr/test/mock/src/
H A Dinstalld_client.cpp307 …rCode InstalldClient::ApplyDiffPatch(const std::string &oldSoPath, const std::string &diffFilePath, in ApplyDiffPatch() argument
310 if (oldSoPath.empty() || diffFilePath.empty() || newSoPath.empty()) { in ApplyDiffPatch()
313 return CallService(&IInstalld::ApplyDiffPatch, oldSoPath, diffFilePath, newSoPath, uid); in ApplyDiffPatch()
H A Dmock_install_client.cpp195 …const std::string &oldSoPath, const std::string &diffFilePath, const std::string &newSoPath, int32… in ApplyDiffPatch() argument
H A Dmock_installd_host_impl.cpp170 …ode InstalldHostImpl::ApplyDiffPatch(const std::string &oldSoPath, const std::string &diffFilePath, in ApplyDiffPatch() argument
/ohos5.0/foundation/bundlemanager/bundle_framework/services/bundlemgr/include/installd/
H A Dinstalld_operator.h245 static bool ApplyDiffPatch(const std::string &oldSoPath, const std::string &diffFilePath,
311 …tatic bool ProcessApplyDiffPatchPath(const std::string &oldSoPath, const std::string &diffFilePath,
H A Dinstalld_host_impl.h182 virtual ErrCode ApplyDiffPatch(const std::string &oldSoPath, const std::string &diffFilePath,
/ohos5.0/foundation/bundlemanager/bundle_framework/services/bundlemgr/src/
H A Dinstalld_client.cpp372 …rCode InstalldClient::ApplyDiffPatch(const std::string &oldSoPath, const std::string &diffFilePath, in ApplyDiffPatch() argument
375 if (oldSoPath.empty() || diffFilePath.empty() || newSoPath.empty()) { in ApplyDiffPatch()
379 return CallService(&IInstalld::ApplyDiffPatch, oldSoPath, diffFilePath, newSoPath, uid); in ApplyDiffPatch()
/ohos5.0/foundation/bundlemanager/bundle_framework/services/bundlemgr/src/quick_fix/
H A Dquick_fix_deployer.cpp836 std::string diffFilePath = ServiceConstants::HAP_COPY_PATH + ServiceConstants::PATH_SEPARATOR + in ProcessApplyDiffPatch() local
838 …ScopeGuard guardRemoveDiffPath([diffFilePath] { InstalldClient::GetInstance()->RemoveDir(diffFileP… in ProcessApplyDiffPatch()
840 … auto ret = InstalldClient::GetInstance()->ExtractDiffFiles(hqf.hqfFilePath, diffFilePath, cpuAbi); in ProcessApplyDiffPatch()
847 ret = InstalldClient::GetInstance()->ApplyDiffPatch(oldSoPath, diffFilePath, newSoPath, uid); in ProcessApplyDiffPatch()
/ohos5.0/foundation/bundlemanager/bundle_framework/services/bundlemgr/src/installd/
H A Dinstalld_operator.cpp1308 const std::string &oldSoPath, const std::string &diffFilePath, in ProcessApplyDiffPatchPath() argument
1312 oldSoPath.c_str(), diffFilePath.c_str(), newSoPath.c_str()); in ProcessApplyDiffPatchPath()
1313 if (oldSoPath.empty() || diffFilePath.empty() || newSoPath.empty()) { in ProcessApplyDiffPatchPath()
1316 if (!IsExistDir(oldSoPath) || !IsExistDir(diffFilePath)) { in ProcessApplyDiffPatchPath()
1326 if (!ScanSoFiles(newSoPath, diffFilePath, diffFilePath, diffFileNames)) { in ProcessApplyDiffPatchPath()
1348 bool InstalldOperator::ApplyDiffPatch(const std::string &oldSoPath, const std::string &diffFilePath, in ApplyDiffPatch() argument
H A Dinstalld_host_impl.cpp1212 …ode InstalldHostImpl::ApplyDiffPatch(const std::string &oldSoPath, const std::string &diffFilePath, in ApplyDiffPatch() argument
1215 if (oldSoPath.empty() || diffFilePath.empty() || newSoPath.empty()) { in ApplyDiffPatch()
1223 if (!InstalldOperator::ApplyDiffPatch(oldSoPath, diffFilePath, newSoPath, uid)) { in ApplyDiffPatch()
/ohos5.0/foundation/bundlemanager/bundle_framework/services/bundlemgr/include/
H A Dinstalld_client.h168 ErrCode ApplyDiffPatch(const std::string &oldSoPath, const std::string &diffFilePath,
/ohos5.0/foundation/bundlemanager/bundle_framework/services/bundlemgr/include/ipc/
H A Dinstalld_interface.h310 virtual ErrCode ApplyDiffPatch(const std::string &oldSoPath, const std::string &diffFilePath, in ApplyDiffPatch() argument
H A Dinstalld_proxy.h183 virtual ErrCode ApplyDiffPatch(const std::string &oldSoPath, const std::string &diffFilePath,
/ohos5.0/foundation/bundlemanager/bundle_framework/services/bundlemgr/src/ipc/
H A Dinstalld_host.cpp613 std::string diffFilePath = Str16ToStr8(data.ReadString16()); in HandleApplyDiffPatch() local
617 ErrCode result = ApplyDiffPatch(oldSoPath, diffFilePath, newSoPath, uid); in HandleApplyDiffPatch()
H A Dinstalld_proxy.cpp499 ErrCode InstalldProxy::ApplyDiffPatch(const std::string &oldSoPath, const std::string &diffFilePath, in ApplyDiffPatch() argument
505 INSTALLD_PARCEL_WRITE(data, String16, Str8ToStr16(diffFilePath)); in ApplyDiffPatch()