Home
last modified time | relevance | path

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

/foundation/bundlemanager/bundle_framework/test/fuzztest/fuzztest_others/basebundleinstallerprocessbundleinstallnative_fuzzer/
H A Dbasebundleinstallerprocessbundleinstallnative_fuzzer.cpp33 auto ret1 = basebundleinstall.ProcessBundleInstallNative(info, userId); in DoSomethingInterestingWithMyAPI()
/foundation/bundlemanager/bundle_framework/services/bundlemgr/test/mock/src/
H A Dinstalld_client.cpp62 ErrCode InstalldClient::ProcessBundleInstallNative(const std::string &userId, const std::string &hnpRootPath, in ProcessBundleInstallNative() function in OHOS::AppExecFwk::InstalldClient
65 return CallService(&IInstalld::ProcessBundleInstallNative, userId, hnpRootPath, in ProcessBundleInstallNative()
H A Dmock_installd_host_impl.cpp48 ErrCode InstalldHostImpl::ProcessBundleInstallNative(const std::string &userId, const std::string &hnpRootPath, in ProcessBundleInstallNative() function in OHOS::AppExecFwk::InstalldHostImpl
H A Dmock_install_client.cpp41 ErrCode InstalldClient::ProcessBundleInstallNative(const std::string &userId, const std::string &hnpRootPath, in ProcessBundleInstallNative() function in OHOS::AppExecFwk::InstalldClient
/foundation/bundlemanager/bundle_framework/services/bundlemgr/src/
H A Dinstalld_client.cpp68 ErrCode InstalldClient::ProcessBundleInstallNative(const std::string &userId, const std::string &hnpRootPath, in ProcessBundleInstallNative() function in OHOS::AppExecFwk::InstalldClient
71 return CallService(&IInstalld::ProcessBundleInstallNative, userId, hnpRootPath, in ProcessBundleInstallNative()
H A Dbase_bundle_installer.cpp2022 ErrCode BaseBundleInstaller::ProcessBundleInstallNative(InnerBundleInfo &info, int32_t &userId) in ProcessBundleInstallNative() function in OHOS::AppExecFwk::BaseBundleInstaller
2026 ErrCode ret = InstalldClient::GetInstance()->ProcessBundleInstallNative(std::to_string(userId), moduleHnpsPath, in ProcessBundleInstallNative()
2098 result = ProcessBundleInstallNative(info, userId_); in ProcessBundleInstallStatus()
2245 result = ProcessBundleInstallNative(newInfo, userId_); in ProcessNewModuleInstall()
2376 result = ProcessBundleInstallNative(newInfo, userId_); in ProcessModuleUpdate()
/foundation/bundlemanager/bundle_framework/services/bundlemgr/include/installd/
H A Dinstalld_host_impl.h62 virtual ErrCode ProcessBundleInstallNative(const std::string &userId, const std::string &hnpRootPath,
H A Dinstalld_operator.h102 static bool ProcessBundleInstallNative(
/foundation/bundlemanager/bundle_framework/services/bundlemgr/include/
H A Dinstalld_client.h184 ErrCode ProcessBundleInstallNative(const std::string &userId, const std::string &hnpRootPath,
H A Dbase_bundle_installer.h238 ErrCode ProcessBundleInstallNative(InnerBundleInfo &info, int32_t &userId);
/foundation/bundlemanager/bundle_framework/services/bundlemgr/include/ipc/
H A Dinstalld_interface.h81 virtual ErrCode ProcessBundleInstallNative(const std::string &userId, const std::string &hnpRootPath, in ProcessBundleInstallNative() function in OHOS::AppExecFwk::IInstalld
H A Dinstalld_proxy.h64 virtual ErrCode ProcessBundleInstallNative(const std::string &userId, const std::string &hnpRootPath,
/foundation/bundlemanager/bundle_framework/services/bundlemgr/test/unittest/bms_install_daemon_test/
H A Dbms_install_daemon_operator_test.cpp1274 * @tc.desc: 1. calling ProcessBundleInstallNative of InstalldOperator
1284 bool ret = InstalldOperator::ProcessBundleInstallNative(userId, hnpRootPath, hapPath, cpuAbi, packageName); in HWTEST_F()
1291 * @tc.desc: 1. calling ProcessBundleInstallNative of InstalldOperator
1301 bool ret = InstalldOperator::ProcessBundleInstallNative(userId, hnpRootPath, hapPath, cpuAbi, packageName); in HWTEST_F()
1308 * @tc.desc: 1. calling ProcessBundleInstallNative of InstalldOperator
1318 bool ret = InstalldOperator::ProcessBundleInstallNative(userId, hnpRootPath, hapPath, cpuAbi, packageName); in HWTEST_F()
H A Dbms_install_daemon_host_impl_test.cpp961 * @tc.desc: 1. calling ProcessBundleInstallNative of hostImpl
974 ErrCode ret = installdProxy->ProcessBundleInstallNative(userId, hnpRootPath, hapPath, cpuAbi, packageName); in HWTEST_F()
H A Dbms_install_daemon_test.cpp982 * @tc.desc: 1. test ProcessBundleInstallNative
992 ErrCode ret = hostImpl.ProcessBundleInstallNative(userId, hnpRootPath, hapPath, cpuAbi, packageName); in HWTEST_F()
/foundation/bundlemanager/bundle_framework/services/bundlemgr/test/unittest/bms_bundle_installer_test/
H A Dbms_bundle_installer_permission_test.cpp343 * @tc.desc: 1.Test the ProcessBundleInstallNative of InstalldHostImpl without permission
353 auto ret = installdHostImpl.ProcessBundleInstallNative(userId, hnpRootPath, hapPath, cpuAbi, packageName); in HWTEST_F()
H A Dbms_bundle_installer_test.cpp2292 * @tc.name: test ProcessBundleInstallNative
2293 * @tc.desc: 1.Test the ProcessBundleInstallNative
2300 ErrCode res = installer.ProcessBundleInstallNative(info, userId); in HWTEST_F()
2627 * @tc.desc: 1.Test the ProcessBundleInstallNative of InstalldHostImpl
2637 auto ret = impl.ProcessBundleInstallNative(userId, hnpRootPath, hapPath, cpuAbi, packageName); in HWTEST_F()
2644 * @tc.desc: 1.Test the ProcessBundleInstallNative of InstalldHostImpl
6667 * @tc.name: test ProcessBundleInstallNative
6668 * @tc.desc: test ProcessBundleInstallNative of BaseBundleInstaller
6686 ErrCode ret = installer.ProcessBundleInstallNative(innerBundleInfo, userId); in HWTEST_F()
/foundation/bundlemanager/bundle_framework/services/bundlemgr/test/unittest/bms_installd_client_test/
H A Dbms_installd_client_test.cpp268 * @tc.name: ProcessBundleInstallNative
269 * @tc.desc: Test whether ProcessBundleInstallNative is called normally.
280 ErrCode result = installClient_->ProcessBundleInstallNative(userId, hnpRootPath, hapPath, cpuAbi, packageName); in HWTEST_F()
281 EXPECT_EQ(result, installClient_->CallService(&IInstalld::ProcessBundleInstallNative, in HWTEST_F()
288 * @tc.name: ProcessBundleInstallNative
289 * @tc.desc: Test whether ProcessBundleInstallNative is called normally.
/foundation/bundlemanager/bundle_framework/services/bundlemgr/src/installd/
H A Dinstalld_host_impl.cpp196 ErrCode InstalldHostImpl::ProcessBundleInstallNative(const std::string &userId, const std::string &hnpRootPath, in ProcessBundleInstallNative() function in OHOS::AppExecFwk::InstalldHostImpl
203 if (!InstalldOperator::ProcessBundleInstallNative(userId, hnpRootPath, hapPath, cpuAbi, packageName)) { in ProcessBundleInstallNative()
H A Dinstalld_operator.cpp459 bool InstalldOperator::ProcessBundleInstallNative(const std::string &userId, const std::string &hnpRootPath, in ProcessBundleInstallNative() function in OHOS::AppExecFwk::InstalldOperator
/foundation/bundlemanager/bundle_framework/services/bundlemgr/src/ipc/
H A Dinstalld_host.cpp295 ErrCode result = ProcessBundleInstallNative(userId, hnpRootPath, hapPath, cpuAbi, packageName); in HandleProcessBundleInstallNative()
H A Dinstalld_proxy.cpp95 ErrCode InstalldProxy::ProcessBundleInstallNative(const std::string &userId, const std::string &hnpRootPath, in ProcessBundleInstallNative() function in OHOS::AppExecFwk::InstalldProxy

Completed in 49 milliseconds