/foundation/bundlemanager/bundle_framework/services/bundlemgr/test/mock/src/ |
H A D | installd_client.cpp | 363 ErrCode InstalldClient::MoveFiles(const std::string &srcDir, const std::string &desDir) in MoveFiles() function in OHOS::AppExecFwk::InstalldClient 368 return CallService(&IInstalld::MoveFiles, srcDir, desDir); in MoveFiles()
|
H A D | mock_installd_host_impl.cpp | 240 ErrCode InstalldHostImpl::MoveFiles(const std::string &srcDir, const std::string &desDir)
in MoveFiles() function in OHOS::AppExecFwk::InstalldHostImpl
|
H A D | mock_install_client.cpp | 239 ErrCode InstalldClient::MoveFiles(const std::string &srcDir, const std::string &desDir) in MoveFiles() function in OHOS::AppExecFwk::InstalldClient
|
/foundation/bundlemanager/bundle_framework/services/bundlemgr/src/ |
H A D | installd_client.cpp | 425 ErrCode InstalldClient::MoveFiles(const std::string &srcDir, const std::string &desDir) in MoveFiles() function in OHOS::AppExecFwk::InstalldClient 431 return CallService(&IInstalld::MoveFiles, srcDir, desDir); in MoveFiles()
|
H A D | base_bundle_installer.cpp | 5617 result = InstalldClient::GetInstance()->MoveFiles(tempSoDir, realSoDir); in MoveSoFileToRealInstallationDir()
|
/foundation/bundlemanager/bundle_framework/services/bundlemgr/include/installd/ |
H A D | installd_host_impl.h | 201 virtual ErrCode MoveFiles(const std::string &srcDir, const std::string &desDir) override;
|
H A D | installd_operator.h | 264 static bool MoveFiles(const std::string &srcDir, const std::string &desDir, bool isDesDirNeedCreated = false);
|
/foundation/bundlemanager/bundle_framework/services/bundlemgr/include/ |
H A D | installd_client.h | 204 ErrCode MoveFiles(const std::string &srcDir, const std::string &desDir);
|
/foundation/bundlemanager/bundle_framework/services/bundlemgr/include/ipc/ |
H A D | installd_interface.h | 356 virtual ErrCode MoveFiles(const std::string &srcDir, const std::string &desDir) in MoveFiles() function in OHOS::AppExecFwk::IInstalld
|
H A D | installd_proxy.h | 203 virtual ErrCode MoveFiles(const std::string &srcDir, const std::string &desDir) override;
|
/foundation/bundlemanager/bundle_framework/services/bundlemgr/test/unittest/bms_install_daemon_test/ |
H A D | bms_install_daemon_operator_test.cpp | 1567 * @tc.desc: 1. calling MoveFiles of InstalldOperator
1573 auto ret =InstalldOperator::MoveFiles(srcDir, desDir, true);
in HWTEST_F() 1575 ret =InstalldOperator::MoveFiles(srcDir, desDir, false);
in HWTEST_F() 1577 ret =InstalldOperator::MoveFiles(srcDir, desDir);
in HWTEST_F() 1887 auto ret =InstalldOperator::MoveFiles(srcDir, desDir, true);
in HWTEST_F()
|
H A D | bms_install_daemon_ipc_test.cpp | 724 * @tc.name: test Marshalling function of MoveFiles
725 * @tc.desc: 1. calling MoveFiles of proxy
732 auto ret = installdProxy->MoveFiles(TEST_STRING, TEST_STRING);
in HWTEST_F() 1078 * @tc.name: test Marshalling function of MoveFiles
1079 * @tc.desc: 1. calling MoveFiles of proxy
1086 auto ret = proxy->MoveFiles(TEST_STRING, TEST_STRING);
in HWTEST_F()
|
H A D | bms_install_daemon_host_impl_test.cpp | 881 auto ret = hostImpl->MoveFiles(TEST_STRING, TEST_STRING);
in HWTEST_F()
|
/foundation/bundlemanager/bundle_framework/services/bundlemgr/test/unittest/bms_bundle_installer_test/ |
H A D | bms_bundle_installer_permission_test.cpp | 670 * @tc.name: test MoveFiles 671 * @tc.desc: 1.Test the MoveFiles of InstalldHostImpl without permission 678 ErrCode ret = hostImpl.MoveFiles(srcDir, desDir); in HWTEST_F()
|
H A D | bms_bundle_app_service_fwk_installer.cpp | 1276 * @tc.name: test function of MoveFiles 1277 * @tc.desc: calling MoveFiles of InstalldOperator 1282 bool ret = installdOperator.MoveFiles(TEST_CREATE_FILE_PATH, TEST_CREATE_FILE_PATH, true); in HWTEST_F()
|
H A D | bms_bundle_installer_test.cpp | 5511 auto ret = hostImpl.MoveFiles("", ""); in HWTEST_F() 5514 ret = hostImpl.MoveFiles(TEST_STRING, ""); in HWTEST_F() 5517 ret = hostImpl.MoveFiles("", TEST_STRING); in HWTEST_F()
|
/foundation/bundlemanager/bundle_framework/services/bundlemgr/src/shared/ |
H A D | inner_shared_bundle_installer.cpp | 645 result = InstalldClient::GetInstance()->MoveFiles(tempSoPath, realSoPath); in MoveSoToRealPath()
|
/foundation/bundlemanager/bundle_framework/services/bundlemgr/src/installd/ |
H A D | installd_host_impl.cpp | 1292 ErrCode InstalldHostImpl::MoveFiles(const std::string &srcDir, const std::string &desDir) in MoveFiles() function in OHOS::AppExecFwk::InstalldHostImpl 1300 LOG_E(BMS_TAG_INSTALLD, "Calling the function MoveFiles with invalid param"); in MoveFiles() 1303 if (!InstalldOperator::MoveFiles(srcDir, desDir)) { in MoveFiles()
|
H A D | installd_operator.cpp | 1531 bool InstalldOperator::MoveFiles(const std::string &srcDir, const std::string &desDir, bool isDesDirNeedCreated) in MoveFiles() function in OHOS::AppExecFwk::InstalldOperator 1558 LOG_E(BMS_TAG_INSTALLD, "MoveFiles open dir(%{public}s) fail, errno:%{public}d", realPath.c_str(), errno); in MoveFiles() 1573 LOG_D(BMS_TAG_INSTALLD, "MoveFiles stat %{public}s failed, errno:%{public}d", curPath.c_str(), errno); in MoveFiles() 1592 return MoveFiles(srcPath, destPath, true); in MoveFileOrDir()
|
/foundation/bundlemanager/bundle_framework/services/bundlemgr/src/app_service_fwk/ |
H A D | app_service_fwk_installer.cpp | 763 result = InstalldClient::GetInstance()->MoveFiles(tempSoPath, realSoPath); in MoveSoToRealPath()
|
/foundation/bundlemanager/bundle_framework/services/bundlemgr/src/ipc/ |
H A D | installd_host.cpp | 720 ErrCode result = MoveFiles(srcDir, desDir); in HandMoveFiles()
|
H A D | installd_proxy.cpp | 649 ErrCode InstalldProxy::MoveFiles(const std::string &srcDir, const std::string &desDir) in MoveFiles() function in OHOS::AppExecFwk::InstalldProxy
|