/foundation/bundlemanager/bundle_framework/services/bundlemgr/test/mock/src/ |
H A D | installd_client.cpp | 200 ErrCode InstalldClient::GetBundleCachePath(const std::string &dir, std::vector<std::string> &cachePath) in GetBundleCachePath() function in OHOS::AppExecFwk::InstalldClient 207 return CallService(&IInstalld::GetBundleCachePath, dir, cachePath); in GetBundleCachePath()
|
H A D | mock_installd_host_impl.cpp | 129 ErrCode InstalldHostImpl::GetBundleCachePath(const std::string &dir, std::vector<std::string> &cachePath)
in GetBundleCachePath() function in OHOS::AppExecFwk::InstalldHostImpl
|
H A D | mock_install_client.cpp | 139 ErrCode InstalldClient::GetBundleCachePath(const std::string &dir, std::vector<std::string> &cachePath) in GetBundleCachePath() function in OHOS::AppExecFwk::InstalldClient
|
/foundation/bundlemanager/bundle_framework/services/bundlemgr/src/aging/ |
H A D | recently_unused_bundle_aging_handler.cpp | 182 if (InstalldClient::GetInstance()->GetBundleCachePath(st, cache) != ERR_OK) { in GetCachePath() 183 APP_LOGW("GetBundleCachePath failed, path %{public}s", st.c_str()); in GetCachePath()
|
/foundation/bundlemanager/bundle_framework/services/bundlemgr/src/ |
H A D | installd_client.cpp | 215 ErrCode InstalldClient::GetBundleCachePath(const std::string &dir, std::vector<std::string> &cachePath) in GetBundleCachePath() function in OHOS::AppExecFwk::InstalldClient 222 return CallService(&IInstalld::GetBundleCachePath, dir, cachePath); in GetBundleCachePath()
|
H A D | bundle_mgr_host_impl.cpp | 1412 if (InstalldClient::GetInstance()->GetBundleCachePath(st, cache) != ERR_OK) { in CleanBundleCacheTaskGetCleanSize() 1413 APP_LOGE("GetBundleCachePath failed, path: %{public}s", st.c_str()); in CleanBundleCacheTaskGetCleanSize() 1557 if (InstalldClient::GetInstance()->GetBundleCachePath(st, cache) != ERR_OK) { in CleanBundleCacheTask() 1558 APP_LOGW("GetBundleCachePath failed, path: %{public}s", st.c_str()); in CleanBundleCacheTask()
|
/foundation/bundlemanager/bundle_framework/services/bundlemgr/include/installd/ |
H A D | installd_host_impl.h | 161 virtual ErrCode GetBundleCachePath(const std::string &dir, std::vector<std::string> &cachePath) override;
|
/foundation/bundlemanager/bundle_framework/services/bundlemgr/include/ |
H A D | installd_client.h | 147 ErrCode GetBundleCachePath(const std::string &dir, std::vector<std::string> &cachePath);
|
/foundation/bundlemanager/bundle_framework/services/bundlemgr/include/ipc/ |
H A D | installd_interface.h | 228 virtual ErrCode GetBundleCachePath(const std::string &dir, std::vector<std::string> &cachePath) in GetBundleCachePath() function in OHOS::AppExecFwk::IInstalld
|
H A D | installd_proxy.h | 162 virtual ErrCode GetBundleCachePath(const std::string &dir, std::vector<std::string> &cachePath) override;
|
/foundation/bundlemanager/bundle_framework/services/bundlemgr/test/unittest/bms_install_daemon_test/ |
H A D | bms_install_daemon_host_impl_test.cpp | 246 * @tc.desc: 1. calling GetBundleCachePath of hostImpl
255 auto ret = hostImpl->GetBundleCachePath(TEST_STRING, vec);
in HWTEST_F() 673 * @tc.desc: 1. calling GetBundleCachePath of hostImpl
682 auto ret = hostImpl->GetBundleCachePath("", vec);
in HWTEST_F()
|
H A D | bms_install_daemon_ipc_test.cpp | 323 * @tc.desc: 1. calling GetBundleCachePath of proxy
332 auto ret = proxy->GetBundleCachePath(TEST_STRING, vec);
in HWTEST_F()
|
H A D | bms_install_daemon_test.cpp | 570 * @tc.name: Test GetBundleCachePath, A param is empty 571 * @tc.desc: 1.Test the GetBundleCachePath of InstalldClient 580 ErrCode ret = InstalldClient::GetInstance()->GetBundleCachePath("", cachePath); in HWTEST_F()
|
/foundation/bundlemanager/bundle_framework/services/bundlemgr/test/unittest/bms_installd_client_test/ |
H A D | bms_installd_client_test.cpp | 691 * @tc.name: GetBundleCachePath 692 * @tc.desc: Test whether GetBundleCachePath is called normally.(dir is empty) 699 ErrCode result = installClient_->GetBundleCachePath(dir, cachePath); in HWTEST_F() 706 * @tc.name: GetBundleCachePath 707 * @tc.desc: Test whether GetBundleCachePath is called normally. 714 ErrCode result = installClient_->GetBundleCachePath(dir, cachePath); in HWTEST_F() 715 EXPECT_EQ(result, installClient_->CallService(&IInstalld::GetBundleCachePath, dir, cachePath)); in HWTEST_F()
|
/foundation/bundlemanager/bundle_framework/services/bundlemgr/test/unittest/bms_bundle_installer_test/ |
H A D | bms_bundle_installer_permission_test.cpp | 407 * @tc.name: test GetBundleCachePath 408 * @tc.desc: 1.Test the GetBundleCachePath of InstalldHostImpl without permission 415 auto ret = installdHostImpl.GetBundleCachePath(dir, cachePath); in HWTEST_F()
|
H A D | bms_bundle_installer_test.cpp | 2450 * @tc.desc: 1.Test the GetBundleCachePath of InstalldHostImpl 2456 auto ret = impl.GetBundleCachePath(TEST_STRING, vec); in HWTEST_F() 2459 ret = impl.GetBundleCachePath("", vec); in HWTEST_F()
|
/foundation/bundlemanager/bundle_framework/services/bundlemgr/src/ipc/ |
H A D | installd_host.cpp | 503 ErrCode result = GetBundleCachePath(dir, cachePath); in HandleGetBundleCachePath() 506 LOG_E(BMS_TAG_INSTALLD, "fail to GetBundleCachePath from reply"); in HandleGetBundleCachePath()
|
H A D | installd_proxy.cpp | 349 ErrCode InstalldProxy::GetBundleCachePath(const std::string &dir, std::vector<std::string> &cachePath) in GetBundleCachePath() function in OHOS::AppExecFwk::InstalldProxy
|
/foundation/bundlemanager/bundle_framework/services/bundlemgr/src/installd/ |
H A D | installd_host_impl.cpp | 1017 ErrCode InstalldHostImpl::GetBundleCachePath(const std::string &dir, std::vector<std::string> &cachePath) in GetBundleCachePath() function in OHOS::AppExecFwk::InstalldHostImpl 1019 LOG_D(BMS_TAG_INSTALLD, "InstalldHostImpl::GetBundleCachePath start"); in GetBundleCachePath() 1025 LOG_E(BMS_TAG_INSTALLD, "Calling the function GetBundleCachePath with invalid param"); in GetBundleCachePath()
|