/foundation/bundlemanager/bundle_framework/services/bundlemgr/test/unittest/bms_bundle_sandbox_app_test/ |
H A D | bms_bundle_sandbox_app_test.cpp | 74 ErrCode InstallSandboxApp(const std::string &bundleName, int32_t dplType, int32_t userId, int32_t &appIndex) const; 155 ErrCode BmsSandboxAppTest::InstallSandboxApp(const std::string &bundleName, int32_t dplType, int32_t userId, in InstallSandboxApp() function in OHOS::BmsSandboxAppTest 164 return installer->InstallSandboxApp(bundleName, dplType, userId, appIndex); in InstallSandboxApp() 398 auto ret = InstallSandboxApp("", DLP_TYPE_1, USERID, appIndex); in HWTEST_F() 417 auto ret = InstallSandboxApp(BUNDLE_NAME, INVALID_DLP_TYPE, USERID, appIndex); in HWTEST_F() 439 auto ret = InstallSandboxApp(BUNDLE_NAME, DLP_TYPE_3, USERID, appIndex); in HWTEST_F() 461 auto ret = InstallSandboxApp(BUNDLE_NAME, DLP_TYPE_1, INVALID_USERID, appIndex); in HWTEST_F() 477 auto ret = InstallSandboxApp("", INVALID_DLP_TYPE, USERID, appIndex); in HWTEST_F() 490 auto ret = InstallSandboxApp("", DLP_TYPE_1, INVALID_USERID, appIndex); in HWTEST_F() 492 ret = InstallSandboxApp("", DLP_TYPE_ in HWTEST_F() [all...] |
/foundation/bundlemanager/bundle_framework/test/systemtest/common/bms/bms_sandbox_app_system_test/ |
H A D | bundle_mgr_sandbox_app_system_test.cpp | 346 * @tc.name: InstallSandboxApp 347 * @tc.desc: Test the interface of InstallSandboxApp 361 ErrCode ret = bundleMgrClient.InstallSandboxApp(BUNDLE_NAME, DLP_TYPE_1, DEFAULT_USERID, appIndex); in HWTEST_F() 378 * @tc.name: InstallSandboxApp 379 * @tc.desc: Test the interface of InstallSandboxApp 392 ErrCode ret = bundleMgrClient.InstallSandboxApp(BUNDLE_NAME, DLP_TYPE_1, DEFAULT_USERID, appIndex); in HWTEST_F() 399 ret = bundleMgrClient.InstallSandboxApp(BUNDLE_NAME, DLP_TYPE_1, DEFAULT_USERID, secondAppIndex); in HWTEST_F() 415 * @tc.name: InstallSandboxApp 416 * @tc.desc: Test the interface of InstallSandboxApp 430 ErrCode ret = bundleMgrClient.InstallSandboxApp(BUNDLE_NAM in HWTEST_F() [all...] |
/foundation/bundlemanager/bundle_framework/services/bundlemgr/include/sandbox_app/ |
H A D | bundle_sandbox_installer.h | 39 ErrCode InstallSandboxApp(const std::string &bundleName, const int32_t &dlpType, const int32_t &userId,
|
H A D | bundle_sandbox_app_helper.h | 51 ErrCode InstallSandboxApp(const std::string &bundleName, const int32_t &dlpType, const int32_t &userId,
|
/foundation/bundlemanager/bundle_framework/services/bundlemgr/src/sandbox_app/ |
H A D | bundle_sandbox_app_helper.cpp | 162 ErrCode BundleSandboxAppHelper::InstallSandboxApp(const std::string &bundleName, const int32_t &dlpType, in InstallSandboxApp() function in OHOS::AppExecFwk::BundleSandboxAppHelper 166 APP_LOGD("enter InstallSandboxApp"); in InstallSandboxApp() 168 return installer->InstallSandboxApp(bundleName, dlpType, userId, appIndex); in InstallSandboxApp()
|
/foundation/bundlemanager/bundle_framework/interfaces/inner_api/appexecfwk_core/src/bundlemgr/ |
H A D | bundle_mgr_client.cpp | 146 ErrCode BundleMgrClient::InstallSandboxApp(const std::string &bundleName, int32_t dlpType, int32_t userId, in InstallSandboxApp() function in OHOS::AppExecFwk::BundleMgrClient 153 return impl_->InstallSandboxApp(bundleName, dlpType, userId, appIndex); in InstallSandboxApp()
|
H A D | bundle_mgr_client_impl.cpp | 426 ErrCode BundleMgrClientImpl::InstallSandboxApp(const std::string &bundleName, int32_t dlpType, int32_t userId, in InstallSandboxApp() function in OHOS::AppExecFwk::BundleMgrClientImpl 429 APP_LOGD("InstallSandboxApp begin"); in InstallSandboxApp() 431 APP_LOGE("InstallSandboxApp bundleName is empty"); in InstallSandboxApp() 441 return bundleInstaller_->InstallSandboxApp(bundleName, dlpType, userId, appIndex); in InstallSandboxApp()
|
/foundation/ability/ability_runtime/test/mock/common/include/ |
H A D | mock_bundle_installer_service.h | 41 MOCK_METHOD4(InstallSandboxApp, ErrCode(const std::string &, int32_t, int32_t, int32_t &));
|
/foundation/ability/form_fwk/services/src/ |
H A D | form_sandbox_render_mgr_inner.cpp | 62 return bundleInstallerProxy->InstallSandboxApp( in InstallSandboxFRS()
|
/foundation/bundlemanager/bundle_framework/test/fuzztest/fuzztest_application/bundleinstallerproxy_fuzzer/ |
H A D | bundleinstallerproxy_fuzzer.cpp | 47 bundleinstallerProxy.InstallSandboxApp(bundleName, dlpType, userId, appIndex); in DoSomethingInterestingWithMyAPI()
|
/foundation/bundlemanager/bundle_framework/interfaces/inner_api/appexecfwk_core/include/bundlemgr/ |
H A D | bundle_installer_interface.h | 106 virtual ErrCode InstallSandboxApp(const std::string &bundleName, int32_t dlpType, int32_t userId,
|
H A D | bundle_mgr_client.h | 94 ErrCode InstallSandboxApp(const std::string &bundleName, int32_t dlpType, int32_t userId, int32_t &appIndex);
|
H A D | bundle_installer_proxy.h | 95 virtual ErrCode InstallSandboxApp(const std::string &bundleName, int32_t dlpType, int32_t userId,
|
H A D | bundle_mgr_client_impl.h | 52 ErrCode InstallSandboxApp(const std::string &bundleName, int32_t dlpType, int32_t userId, int32_t &appIndex);
|
/foundation/bundlemanager/bundle_framework/test/fuzztest/fuzztest_application/bundleinstallerhost_fuzzer/ |
H A D | bundleinstallerhost_fuzzer.cpp | 74 bundleInstallerHost->InstallSandboxApp(bundleName, dplType, userId, appIndex); in DoSomethingInterestingWithMyAPI()
|
/foundation/bundlemanager/bundle_tool/test/mock/ |
H A D | mock_bundle_installer_host.h | 72 ErrCode InstallSandboxApp(const std::string &bundleName, int32_t dplType, int32_t userId,
|
H A D | mock_bundle_installer_host.cpp | 104 ErrCode MockBundleInstallerHost::InstallSandboxApp(const std::string &bundleName, int32_t dplType, int32_t userId, in InstallSandboxApp() function in OHOS::AppExecFwk::MockBundleInstallerHost
|
/foundation/bundlemanager/bundle_framework/services/bundlemgr/include/ |
H A D | bundle_installer_host.h | 110 virtual ErrCode InstallSandboxApp(const std::string &bundleName, int32_t dplType, int32_t userId, 181 * @brief Handles the InstallSandboxApp function called from a IBundleInstaller proxy object.
|
/foundation/bundlemanager/bundle_framework/services/bundlemgr/test/unittest/bms_bundle_multiuser_install_test/ |
H A D | bms_bundle_multiuser_install_ipc_test.cpp | 150 ErrCode InstallSandboxApp(const std::string &bundleName, int32_t dlpType, int32_t userId, in InstallSandboxApp() function in OHOS::EmptyTestBundleInstaller
|
/foundation/bundlemanager/bundle_framework/services/bundlemgr/test/unittest/bms_bundle_permission_grant_test/ |
H A D | bms_bundle_permission_token_test.cpp | 122 * @tc.name: test InstallSandboxApp of BundleInstallerHost 124 * 2. InstallSandboxApp false by no permission 130 auto ret1 = bundleInstallerHost_->InstallSandboxApp(BUNDLE_NAME, dplType, USERID, appIndex); in HWTEST_F()
|
H A D | bms_bundle_permission_system_app_test.cpp | 1115 * @tc.name: test InstallSandboxApp of BundleInstallerHost 1117 * 2. InstallSandboxApp false by no permission 1124 ErrCode ret = bundleInstallerHost_->InstallSandboxApp(BUNDLE_NAME, dplType, USERID, appIndex); in HWTEST_F() 1128 ret = bundleInstallerHost_->InstallSandboxApp("", dplType, USERID, appIndex); in HWTEST_F() 1132 ret = bundleInstallerHost_->InstallSandboxApp(BUNDLE_NAME, dplType, USERID, appIndex); in HWTEST_F() 1135 ret = bundleInstallerHost_->InstallSandboxApp("", dplType, USERID, appIndex); in HWTEST_F()
|
/foundation/bundlemanager/bundle_framework/services/bundlemgr/src/ |
H A D | bundle_installer_host.cpp | 249 auto ret = InstallSandboxApp(bundleName, dplType, userId, appIndex); in HandleInstallSandboxApp() 527 ErrCode BundleInstallerHost::InstallSandboxApp(const std::string &bundleName, int32_t dplType, int32_t userId, in InstallSandboxApp() function in OHOS::AppExecFwk::BundleInstallerHost 540 LOG_E(BMS_TAG_INSTALLER, "InstallSandboxApp permission denied"); in InstallSandboxApp() 547 auto res = helper->InstallSandboxApp(bundleName, dplType, userId, appIndex); in InstallSandboxApp()
|
/foundation/ability/ability_runtime/test/unittest/bundle_mgr_helper_test/ |
H A D | bundle_mgr_helper_test.cpp | 515 * @tc.desc: InstallSandboxApp 524 auto ret = bundleMgrHelper->InstallSandboxApp(bundleName, dlpType, userId, appIndex); in HWTEST_F() 530 * @tc.desc: InstallSandboxApp 539 auto ret = bundleMgrHelper->InstallSandboxApp(bundleName, dlpType, userId, appIndex); in HWTEST_F()
|
/foundation/ability/ability_runtime/interfaces/kits/native/appkit/ability_bundle_manager_helper/ |
H A D | bundle_mgr_helper.h | 37 ErrCode InstallSandboxApp(const std::string &bundleName, int32_t dlpType, int32_t userId, int32_t &appIndex);
|
/foundation/ability/ability_runtime/test/fuzztest/bundlemgrhelper_fuzzer/ |
H A D | bundlemgrhelper_fuzzer.cpp | 73 bmHelper->InstallSandboxApp(stringParam, int32Param, int32Param, int32Param); // branch in BundleMgrHelperFuzztest1()
|