Home
last modified time | relevance | path

Searched refs:GetBundleCachePath (Results 1 - 19 of 19) sorted by relevance

/foundation/bundlemanager/bundle_framework/services/bundlemgr/test/mock/src/
H A Dinstalld_client.cpp200 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 Dmock_installd_host_impl.cpp129 ErrCode InstalldHostImpl::GetBundleCachePath(const std::string &dir, std::vector<std::string> &cachePath) in GetBundleCachePath() function in OHOS::AppExecFwk::InstalldHostImpl
H A Dmock_install_client.cpp139 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 Drecently_unused_bundle_aging_handler.cpp182 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 Dinstalld_client.cpp215 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 Dbundle_mgr_host_impl.cpp1412 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 Dinstalld_host_impl.h161 virtual ErrCode GetBundleCachePath(const std::string &dir, std::vector<std::string> &cachePath) override;
/foundation/bundlemanager/bundle_framework/services/bundlemgr/include/
H A Dinstalld_client.h147 ErrCode GetBundleCachePath(const std::string &dir, std::vector<std::string> &cachePath);
/foundation/bundlemanager/bundle_framework/services/bundlemgr/include/ipc/
H A Dinstalld_interface.h228 virtual ErrCode GetBundleCachePath(const std::string &dir, std::vector<std::string> &cachePath) in GetBundleCachePath() function in OHOS::AppExecFwk::IInstalld
H A Dinstalld_proxy.h162 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 Dbms_install_daemon_host_impl_test.cpp246 * @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 Dbms_install_daemon_ipc_test.cpp323 * @tc.desc: 1. calling GetBundleCachePath of proxy
332 auto ret = proxy->GetBundleCachePath(TEST_STRING, vec); in HWTEST_F()
H A Dbms_install_daemon_test.cpp570 * @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 Dbms_installd_client_test.cpp691 * @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 Dbms_bundle_installer_permission_test.cpp407 * @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 Dbms_bundle_installer_test.cpp2450 * @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 Dinstalld_host.cpp503 ErrCode result = GetBundleCachePath(dir, cachePath); in HandleGetBundleCachePath()
506 LOG_E(BMS_TAG_INSTALLD, "fail to GetBundleCachePath from reply"); in HandleGetBundleCachePath()
H A Dinstalld_proxy.cpp349 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 Dinstalld_host_impl.cpp1017 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()

Completed in 56 milliseconds