Home
last modified time | relevance | path

Searched refs:MoveFiles (Results 1 - 22 of 22) sorted by relevance

/foundation/bundlemanager/bundle_framework/services/bundlemgr/test/mock/src/
H A Dinstalld_client.cpp363 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 Dmock_installd_host_impl.cpp240 ErrCode InstalldHostImpl::MoveFiles(const std::string &srcDir, const std::string &desDir) in MoveFiles() function in OHOS::AppExecFwk::InstalldHostImpl
H A Dmock_install_client.cpp239 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 Dinstalld_client.cpp425 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 Dbase_bundle_installer.cpp5617 result = InstalldClient::GetInstance()->MoveFiles(tempSoDir, realSoDir); in MoveSoFileToRealInstallationDir()
/foundation/bundlemanager/bundle_framework/services/bundlemgr/include/installd/
H A Dinstalld_host_impl.h201 virtual ErrCode MoveFiles(const std::string &srcDir, const std::string &desDir) override;
H A Dinstalld_operator.h264 static bool MoveFiles(const std::string &srcDir, const std::string &desDir, bool isDesDirNeedCreated = false);
/foundation/bundlemanager/bundle_framework/services/bundlemgr/include/
H A Dinstalld_client.h204 ErrCode MoveFiles(const std::string &srcDir, const std::string &desDir);
/foundation/bundlemanager/bundle_framework/services/bundlemgr/include/ipc/
H A Dinstalld_interface.h356 virtual ErrCode MoveFiles(const std::string &srcDir, const std::string &desDir) in MoveFiles() function in OHOS::AppExecFwk::IInstalld
H A Dinstalld_proxy.h203 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 Dbms_install_daemon_operator_test.cpp1567 * @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 Dbms_install_daemon_ipc_test.cpp724 * @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 Dbms_install_daemon_host_impl_test.cpp881 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 Dbms_bundle_installer_permission_test.cpp670 * @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 Dbms_bundle_app_service_fwk_installer.cpp1276 * @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 Dbms_bundle_installer_test.cpp5511 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 Dinner_shared_bundle_installer.cpp645 result = InstalldClient::GetInstance()->MoveFiles(tempSoPath, realSoPath); in MoveSoToRealPath()
/foundation/bundlemanager/bundle_framework/services/bundlemgr/src/installd/
H A Dinstalld_host_impl.cpp1292 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 Dinstalld_operator.cpp1531 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 Dapp_service_fwk_installer.cpp763 result = InstalldClient::GetInstance()->MoveFiles(tempSoPath, realSoPath); in MoveSoToRealPath()
/foundation/bundlemanager/bundle_framework/services/bundlemgr/src/ipc/
H A Dinstalld_host.cpp720 ErrCode result = MoveFiles(srcDir, desDir); in HandMoveFiles()
H A Dinstalld_proxy.cpp649 ErrCode InstalldProxy::MoveFiles(const std::string &srcDir, const std::string &desDir) in MoveFiles() function in OHOS::AppExecFwk::InstalldProxy

Completed in 53 milliseconds