Searched refs:hapFilePaths (Results 1 - 8 of 8) sorted by relevance
/base/customization/enterprise_device_management/test/unittest/interface/inner_api/proxy/ |
H A D | bundle_manager_proxy_test.cpp | 289 ASSERT_TRUE(errMessage == "install failed due to invalid hapFilePaths"); in HWTEST_F() 330 * @tc.desc: Test Insatll method with empty hapFilePaths. 336 std::vector<std::string> hapFilePaths; in HWTEST_F() local 339 ErrCode ret = bundleManagerProxy->Install(admin, hapFilePaths, installParam, retMsg); in HWTEST_F() 345 * @tc.desc: Test Insatll method with one hapFilePaths. 351 std::vector<std::string> hapFilePaths = { TEST_PACKAGE_PATH }; in HWTEST_F() local 362 ErrCode ret = bundleManagerProxy->Install(admin, hapFilePaths, installParam, retMsg); in HWTEST_F() 368 * @tc.desc: Test Insatll method with one hapFilePaths. 374 std::vector<std::string> hapFilePaths = { TEST_PACKAGE_PATH }; in HWTEST_F() local 385 ErrCode ret = bundleManagerProxy->Install(admin, hapFilePaths, installPara in HWTEST_F() 398 std::string hapFilePaths; HWTEST_F() local 415 std::string hapFilePaths = { TEST_PACKAGE_PATH }; HWTEST_F() local [all...] |
/base/customization/enterprise_device_management/services/edm_plugin/src/utils/ |
H A D | install_param_serializer.cpp | 32 data.ReadStringVector(&result.hapFilePaths); in GetPolicy()
|
/base/customization/enterprise_device_management/services/edm_plugin/include/utils/ |
H A D | install_param_serializer.h | 26 std::vector<std::string> hapFilePaths; member
|
/base/customization/enterprise_device_management/services/edm_plugin/src/ |
H A D | install_plugin.cpp | 178 std::vector<std::string> hapFilePaths = param.hapFilePaths; in InstallParamInit() local 180 for (auto const &hapFilePath : hapFilePaths) { in InstallParamInit()
|
/base/customization/enterprise_device_management/interfaces/inner_api/bundle_manager/include/ |
H A D | bundle_manager_proxy.h | 36 int32_t Install(AppExecFwk::ElementName &admin, std::vector<std::string> &hapFilePaths,
|
/base/customization/enterprise_device_management/interfaces/inner_api/bundle_manager/src/ |
H A D | bundle_manager_proxy.cpp | 170 int32_t BundleManagerProxy::Install(AppExecFwk::ElementName &admin, std::vector<std::string> &hapFilePaths, in Install() argument 175 if (hapFilePaths.empty()) { in Install() 176 EDMLOGE("install failed due to empty hapFilePaths"); in Install() 180 for (auto const &hapFilePath : hapFilePaths) { in Install() 281 EDMLOGE("install failed due to invalid hapFilePaths"); in checkHapFilePath() 282 errMessage = "install failed due to invalid hapFilePaths"; in checkHapFilePath()
|
/base/customization/enterprise_device_management/interfaces/kits/bundle_manager/include/ |
H A D | bundle_manager_addon.h | 47 std::vector<std::string> hapFilePaths; member
|
/base/customization/enterprise_device_management/interfaces/kits/bundle_manager/src/ |
H A D | bundle_manager_addon.cpp | 174 asyncCallbackInfo->ret = proxy->Install(asyncCallbackInfo->elementName, asyncCallbackInfo->hapFilePaths, in NativeInstall() 302 ASSERT_AND_THROW_PARAM_ERROR(env, ParseStringArray(env, asyncCallbackInfo->hapFilePaths, argv[ARR_INDEX_ONE]), in CheckAndParseInstallParamType()
|
Completed in 8 milliseconds