Home
last modified time | relevance | path

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

/foundation/bundlemanager/bundle_framework/services/bundlemgr/test/unittest/bms_install_daemon_test/
H A Dbms_install_daemon_test.cpp62 int CreateBundleDir(const std::string &bundleDir) const;
112 int BmsInstallDaemonTest::CreateBundleDir(const std::string &bundleDir) const in CreateBundleDir() function in OHOS::BmsInstallDaemonTest
117 return InstalldClient::GetInstance()->CreateBundleDir(bundleDir); in CreateBundleDir()
306 int result = CreateBundleDir(BUNDLE_CODE_DIR); in HWTEST_F()
323 int result = InstalldClient::GetInstance()->CreateBundleDir(BUNDLE_CODE_DIR); in HWTEST_F()
335 int result = CreateBundleDir(BUNDLE_DATA_DIR); in HWTEST_F()
347 int result = CreateBundleDir(BUNDLE_CODE_DIR); in HWTEST_F()
365 int result = CreateBundleDir(""); in HWTEST_F()
379 int result1 = CreateBundleDir(SYSTEM_DIR); in HWTEST_F()
727 CreateBundleDir(BUNDLE_CODE_DI in HWTEST_F()
[all...]
H A Dbms_install_daemon_host_impl_test.cpp85 * @tc.desc: 1. calling CreateBundleDir of hostImpl
93 auto ret = hostImpl->CreateBundleDir(TEST_STRING); in HWTEST_F()
490 * @tc.desc: 1. calling CreateBundleDir of hostImpl
498 auto ret = hostImpl->CreateBundleDir(""); in HWTEST_F()
H A Dbms_install_daemon_ipc_test.cpp165 * @tc.desc: 1. calling CreateBundleDir of proxy
173 auto ret = proxy->CreateBundleDir(TEST_STRING); in HWTEST_F()
/foundation/bundlemanager/bundle_framework/services/bundlemgr/test/mock/src/
H A Dinstalld_client.cpp25 ErrCode InstalldClient::CreateBundleDir(const std::string &bundleDir) in CreateBundleDir() function in OHOS::AppExecFwk::InstalldClient
32 return CallService(&IInstalld::CreateBundleDir, bundleDir); in CreateBundleDir()
H A Dmock_installd_host_impl.cpp32 ErrCode InstalldHostImpl::CreateBundleDir(const std::string &bundleDir) in CreateBundleDir() function in OHOS::AppExecFwk::InstalldHostImpl
H A Dmock_install_client.cpp20 ErrCode InstalldClient::CreateBundleDir(const std::string &bundleDir) in CreateBundleDir() function in OHOS::AppExecFwk::InstalldClient
/foundation/bundlemanager/bundle_framework/services/bundlemgr/src/
H A Dinstalld_client.cpp30 ErrCode InstalldClient::CreateBundleDir(const std::string &bundleDir) in CreateBundleDir() function in OHOS::AppExecFwk::InstalldClient
37 return CallService(&IInstalld::CreateBundleDir, bundleDir); in CreateBundleDir()
H A Dbase_bundle_installer.cpp2778 ErrCode result = InstalldClient::GetInstance()->CreateBundleDir(appCodePath); in CreateBundleCodeDir()
5236 auto result = InstalldClient::GetInstance()->CreateBundleDir(modulePath); in InnerProcessNativeLibs()
5615 InstalldClient::GetInstance()->CreateBundleDir(realSoDir); in MoveSoFileToRealInstallationDir()
/foundation/bundlemanager/bundle_framework/services/bundlemgr/include/installd/
H A Dinstalld_host_impl.h36 virtual ErrCode CreateBundleDir(const std::string &bundleDir) override;
/foundation/bundlemanager/bundle_framework/services/bundlemgr/include/
H A Dinstalld_client.h42 ErrCode CreateBundleDir(const std::string &bundleDir);
/foundation/bundlemanager/bundle_framework/services/bundlemgr/include/ipc/
H A Dinstalld_interface.h43 virtual ErrCode CreateBundleDir(const std::string &bundleDir) in CreateBundleDir() function in OHOS::AppExecFwk::IInstalld
H A Dinstalld_proxy.h38 virtual ErrCode CreateBundleDir(const std::string &bundlePath) override;
/foundation/bundlemanager/bundle_framework/services/bundlemgr/src/verify/
H A Dverify_manager_host_impl.cpp421 result = InstalldClient::GetInstance()->CreateBundleDir(dir); in MkdirIfNotExist()
/foundation/bundlemanager/bundle_framework/services/bundlemgr/src/quick_fix/
H A Dquick_fix_deployer.cpp351 if (InstalldClient::GetInstance()->CreateBundleDir(patchPath) != ERR_OK) { in ProcessPatchDeployEnd()
374 ErrCode ret = InstalldClient::GetInstance()->CreateBundleDir(patchPath); in ProcessHotReloadDeployEnd()
/foundation/bundlemanager/bundle_framework/services/bundlemgr/test/unittest/bms_installd_client_test/
H A Dbms_installd_client_test.cpp89 * @tc.name: CreateBundleDir
90 * @tc.desc: Test whether CreateBundleDir is called normally.(bundleDir is empty)
96 ErrCode result = installClient_->CreateBundleDir(bundleDir); in HWTEST_F()
103 * @tc.name: CreateBundleDir
104 * @tc.desc: Test whether CreateBundleDir is called normally.
110 ErrCode result = installClient_->CreateBundleDir(bundleDir); in HWTEST_F()
111 EXPECT_EQ(result, installClient_->CallService(&IInstalld::CreateBundleDir, bundleDir)); in HWTEST_F()
/foundation/bundlemanager/bundle_framework/services/bundlemgr/src/extend_resource/
H A Dextend_resource_manager_host_impl.cpp238 result = InstalldClient::GetInstance()->CreateBundleDir(dir); in MkdirIfNotExist()
/foundation/bundlemanager/bundle_framework/services/bundlemgr/src/shared/
H A Dinner_shared_bundle_installer.cpp318 result = InstalldClient::GetInstance()->CreateBundleDir(dir); in MkdirIfNotExist()
/foundation/bundlemanager/bundle_framework/services/bundlemgr/src/app_service_fwk/
H A Dapp_service_fwk_installer.cpp661 result = InstalldClient::GetInstance()->CreateBundleDir(dir); in MkdirIfNotExist()
/foundation/bundlemanager/bundle_framework/services/bundlemgr/src/ipc/
H A Dinstalld_host.cpp242 LOG_NOFUNC_I(BMS_TAG_INSTALLD, "CreateBundleDir %{public}s", bundleDir.c_str()); in HandleCreateBundleDir()
243 ErrCode result = CreateBundleDir(bundleDir); in HandleCreateBundleDir()
H A Dinstalld_proxy.cpp40 ErrCode InstalldProxy::CreateBundleDir(const std::string &bundleDir) in CreateBundleDir() function in OHOS::AppExecFwk::InstalldProxy
/foundation/bundlemanager/bundle_framework/services/bundlemgr/src/installd/
H A Dinstalld_host_impl.cpp104 ErrCode InstalldHostImpl::CreateBundleDir(const std::string &bundleDir) in CreateBundleDir() function in OHOS::AppExecFwk::InstalldHostImpl
111 LOG_E(BMS_TAG_INSTALLD, "Calling the function CreateBundleDir with invalid param"); in CreateBundleDir()
/foundation/bundlemanager/bundle_framework/services/bundlemgr/test/unittest/bms_bundle_installer_test/
H A Dbms_bundle_installer_test.cpp2322 * @tc.desc: 1.Test the CreateBundleDir of InstalldHostImpl
2327 auto ret = impl.CreateBundleDir(""); in HWTEST_F()

Completed in 49 milliseconds