Searched refs:isBundleInstalled (Results 1 - 4 of 4) sorted by relevance
/foundation/bundlemanager/bundle_framework/services/bundlemgr/test/unittest/bms_bundle_mgr_proxy_test/ |
H A D | bms_bundle_mgr_proxy_test.cpp | 1032 bool isBundleInstalled = false; in HWTEST_F() local 1033 ErrCode res = bundleMgrProxy.IsBundleInstalled("", 100, 0, isBundleInstalled); in HWTEST_F() 1035 EXPECT_FALSE(isBundleInstalled); in HWTEST_F()
|
/foundation/bundlemanager/bundle_framework/test/systemtest/common/bms/acts_bms_kit_system_test/ |
H A D | acts_bms_kit_system_test.cpp | 9635 bool isBundleInstalled = false; in HWTEST_F() local 9636 ErrCode ret = bundleMgrProxy->IsBundleInstalled(DEFAULT_APP_BUNDLE_NAME, 0, 0, isBundleInstalled); in HWTEST_F() 9638 EXPECT_FALSE(isBundleInstalled); in HWTEST_F() 9664 bool isBundleInstalled = false; in HWTEST_F() local 9665 ErrCode ret = bundleMgrProxy->IsBundleInstalled(appName, 200, 0, isBundleInstalled); in HWTEST_F() 9667 EXPECT_FALSE(isBundleInstalled); in HWTEST_F() 9669 ret = bundleMgrProxy->IsBundleInstalled(appName, 100, 0, isBundleInstalled); in HWTEST_F() 9671 EXPECT_TRUE(isBundleInstalled); in HWTEST_F() 9673 isBundleInstalled = false; in HWTEST_F() 9674 ret = bundleMgrProxy->IsBundleInstalled(appName, 100, 3000, isBundleInstalled); in HWTEST_F() [all...] |
/foundation/bundlemanager/bundle_framework/interfaces/inner_api/appexecfwk_core/src/bundlemgr/ |
H A D | bundle_mgr_host.cpp | 4111 bool isBundleInstalled = false; in HandleIsBundleInstalled() local 4112 auto ret = IsBundleInstalled(bundleName, userId, apppIndex, isBundleInstalled); in HandleIsBundleInstalled() 4117 if ((ret == ERR_OK) && !reply.WriteBool(isBundleInstalled)) { in HandleIsBundleInstalled()
|
/foundation/bundlemanager/bundle_tool/frameworks/src/ |
H A D | bundle_test_tool.cpp | 177 " isBundleInstalled determine whether the bundle is installed based on bundleName user " 964 {"isBundleInstalled", in CreateCommandMap() 4547 std::string commandName = "isBundleInstalled"; in RunAsIsBundleInstalled() 4565 APP_LOGD("bundle_test_tool isBundleInstalled with no option."); in RunAsIsBundleInstalled() 4582 bool isBundleInstalled = false; in RunAsIsBundleInstalled() local 4583 result = bundleMgrProxy_->IsBundleInstalled(bundleName, userId, appIndex, isBundleInstalled); in RunAsIsBundleInstalled() 4586 resultReceiver_.append("isBundleInstalled: "); in RunAsIsBundleInstalled() 4587 resultReceiver_.append(isBundleInstalled ? "true\n" : "false\n"); in RunAsIsBundleInstalled()
|
Completed in 37 milliseconds