/foundation/bundlemanager/bundle_framework/services/bundlemgr/test/unittest/bms_bundle_quick_fix_manager_test/ |
H A D | bms_bundle_quick_fix_manager_test.cpp | 144 * @tc.name: test CopyFiles 145 * @tc.desc: 1. call CopyFiles, files copy to dest path, return true 155 auto ret = quickFixManagerProxy->CopyFiles(sourceFiles, destFiles); in HWTEST_F() 173 * @tc.name: test CopyFiles 174 * @tc.desc: 1. call CopyFiles with invalid file suffix, return false 184 auto ret = quickFixManagerProxy->CopyFiles(sourceFiles, destFiles); in HWTEST_F() 192 * @tc.name: test CopyFiles 193 * @tc.desc: 1. call CopyFiles with not exist file, return false 202 auto ret = quickFixManagerProxy->CopyFiles(sourceFiles, destFiles); in HWTEST_F() 209 * @tc.name: test CopyFiles [all...] |
/foundation/bundlemanager/bundle_framework/test/fuzztest/fuzztest_others/copyfiles_fuzzer/ |
H A D | copyfiles_fuzzer.cpp | 35 quickFix.CopyFiles(sourceFiles, destFiles); in DoSomethingInterestingWithMyAPI()
|
/foundation/bundlemanager/bundle_framework/interfaces/inner_api/appexecfwk_core/include/quick_fix/ |
H A D | quick_fix_manager_interface.h | 55 virtual ErrCode CopyFiles(const std::vector<std::string> &sourceFiles, std::vector<std::string> &destFiles) in CopyFiles() function in OHOS::AppExecFwk::IQuickFixManager
|
H A D | quick_fix_manager_proxy.h | 40 virtual ErrCode CopyFiles(const std::vector<std::string> &sourceFiles,
|
/foundation/bundlemanager/bundle_framework/interfaces/inner_api/appexecfwk_core/include/extend_resource/ |
H A D | extend_resource_manager_interface.h | 70 virtual ErrCode CopyFiles( in CopyFiles() function in OHOS::AppExecFwk::IExtendResourceManager
|
H A D | extend_resource_manager_proxy.h | 43 virtual ErrCode CopyFiles(
|
/foundation/bundlemanager/bundle_framework/test/systemtest/common/bms/extend_resource_manager_proxy_test/ |
H A D | extend_resource_manager_proxy_test.cpp | 194 * @tc.name: test the CopyFiles
196 * 2. test CopyFiles
204 ErrCode res = extendResource.CopyFiles(sourceFiles, destFiles);
in HWTEST_F() 208 res = extendResource.CopyFiles(sourceFiles, destFiles);
in HWTEST_F()
|
/foundation/ability/ability_runtime/interfaces/inner_api/quick_fix/src/ |
H A D | quick_fix_manager_client.cpp | 53 auto copyRet = bundleQuickFixMgr->CopyFiles(quickFixFiles, destFiles); in ApplyQuickFix()
|
/foundation/bundlemanager/bundle_framework/services/bundlemgr/test/mock/src/ |
H A D | installd_client.cpp | 336 ErrCode InstalldClient::CopyFiles(const std::string &sourceDir, const std::string &destinationDir) in CopyFiles() function in OHOS::AppExecFwk::InstalldClient 338 return CallService(&IInstalld::CopyFiles, sourceDir, destinationDir); in CopyFiles()
|
H A D | mock_installd_host_impl.cpp | 199 ErrCode InstalldHostImpl::CopyFiles(const std::string &sourceDir, const std::string &destinationDir)
in CopyFiles() function in OHOS::AppExecFwk::InstalldHostImpl
|
H A D | mock_install_client.cpp | 218 ErrCode InstalldClient::CopyFiles(const std::string &sourceDir, const std::string &destinationDir) in CopyFiles() function in OHOS::AppExecFwk::InstalldClient
|
/foundation/ability/ability_runtime/test/mock/services_appmgr_test/include/ |
H A D | mock_bundle_manager.h | 179 virtual ErrCode CopyFiles(const std::vector<std::string>& sourceFiles, std::vector<std::string>& destFiles) override
|
/foundation/bundlemanager/bundle_framework/services/bundlemgr/test/unittest/bms_install_daemon_test/ |
H A D | bms_install_daemon_operator_test.cpp | 386 * @tc.desc: 1. calling CopyFiles of InstalldOperator
393 auto ret = InstalldOperator::CopyFiles(path, TEST_STRING);
in HWTEST_F() 395 ret = InstalldOperator::CopyFiles(path, "/.../");
in HWTEST_F() 402 * @tc.desc: 1. calling CopyFiles of InstalldOperator
409 auto ret = InstalldOperator::CopyFiles(TEST_STRING, path);
in HWTEST_F() 416 * @tc.desc: 1. calling CopyFiles of InstalldOperator
423 auto ret = InstalldOperator::CopyFiles(path, path);
in HWTEST_F() 430 * @tc.desc: 1. calling CopyFiles of InstalldOperator
437 auto ret = InstalldOperator::CopyFiles(path, path);
in HWTEST_F() 444 * @tc.desc: 1. calling CopyFiles o [all...] |
H A D | bms_install_daemon_ipc_test.cpp | 494 * @tc.desc: 1. calling CopyFiles of proxy
503 auto ret = proxy->CopyFiles(TEST_STRING, TEST_STRING);
in HWTEST_F() 510 * @tc.desc: 1. calling CopyFiles of proxy
518 auto ret = installdProxy->CopyFiles(TEST_STRING, TEST_STRING);
in HWTEST_F() 525 * @tc.desc: 1. calling CopyFiles of proxy
541 * @tc.desc: 1. calling CopyFiles of proxy
|
H A D | bms_install_daemon_host_impl_test.cpp | 417 * @tc.desc: 1. calling CopyFiles of hostImpl
426 auto ret = hostImpl->CopyFiles(TEST_STRING, TEST_STRING);
in HWTEST_F() 433 * @tc.desc: 1. calling CopyFiles of hostImpl
441 auto ret = installdProxy->CopyFiles(TEST_STRING, TEST_STRING);
in HWTEST_F() 448 * @tc.desc: 1. calling CopyFiles of hostImpl
|
/foundation/bundlemanager/bundle_framework/services/bundlemgr/src/ |
H A D | installd_client.cpp | 396 ErrCode InstalldClient::CopyFiles(const std::string &sourceDir, const std::string &destinationDir) in CopyFiles() function in OHOS::AppExecFwk::InstalldClient 398 return CallService(&IInstalld::CopyFiles, sourceDir, destinationDir); in CopyFiles()
|
/foundation/bundlemanager/bundle_framework/interfaces/inner_api/appexecfwk_core/src/extend_resource/ |
H A D | extend_resource_manager_proxy.cpp | 295 ErrCode ExtendResourceManagerProxy::CopyFiles( in CopyFiles() function in OHOS::AppExecFwk::ExtendResourceManagerProxy 305 APP_LOGE("CopyFiles CheckFilePath failed"); in CopyFiles()
|
/foundation/bundlemanager/bundle_framework/services/bundlemgr/include/installd/ |
H A D | installd_host_impl.h | 192 virtual ErrCode CopyFiles(const std::string &sourceDir, const std::string &destinationDir) override;
|
H A D | installd_operator.h | 238 static bool CopyFiles(const std::string &sourceDir, const std::string &destinationDir);
|
/foundation/bundlemanager/bundle_framework/services/bundlemgr/include/ |
H A D | installd_client.h | 178 ErrCode CopyFiles(const std::string &sourceDir, const std::string &destinationDir);
|
/foundation/bundlemanager/bundle_framework/interfaces/inner_api/appexecfwk_core/src/quick_fix/ |
H A D | quick_fix_manager_proxy.cpp | 210 ErrCode QuickFixManagerProxy::CopyFiles( in CopyFiles() function in OHOS::AppExecFwk::QuickFixManagerProxy 220 LOG_E(BMS_TAG_DEFAULT, "CopyFiles CheckFilePath failed"); in CopyFiles()
|
/foundation/bundlemanager/bundle_framework/services/bundlemgr/include/ipc/ |
H A D | installd_interface.h | 335 virtual ErrCode CopyFiles(const std::string &sourceDir, const std::string &destinationDir) in CopyFiles() function in OHOS::AppExecFwk::IInstalld
|
H A D | installd_proxy.h | 193 virtual ErrCode CopyFiles(const std::string &sourceDir, const std::string &destinationDir) override;
|
/foundation/bundlemanager/bundle_framework/services/bundlemgr/src/quick_fix/ |
H A D | quick_fix_boot_scanner.cpp | 196 if (InstalldClient::GetInstance()->CopyFiles(quickFixPath, destinationDir) != ERR_OK) { in ReprocessQuickFix()
|
/foundation/bundlemanager/bundle_framework/services/bundlemgr/test/unittest/bms_bundle_installer_test/ |
H A D | bms_bundle_installer_permission_test.cpp | 642 * @tc.name: test CopyFiles 643 * @tc.desc: 1.Test the CopyFiles of InstalldHostImpl without permission 650 ErrCode ret = hostImpl.CopyFiles(sourceDir, destinationDir); in HWTEST_F()
|