/ohos5.0/foundation/bundlemanager/bundle_framework/services/bundlemgr/src/sandbox_app/ |
H A D | bundle_sandbox_installer.cpp | 211 result = InstalldClient::GetInstance()->RemoveBundleDataDir(innerBundleName, userId_); in UninstallSandboxApp() 291 if (InstalldClient::GetInstance()->RemoveBundleDataDir(key, userId) != ERR_OK) { in SandboxAppRollBack()
|
/ohos5.0/foundation/bundlemanager/bundle_framework/services/bundlemgr/test/unittest/bms_install_daemon_test/ |
H A D | bms_install_daemon_host_impl_test.cpp | 158 auto ret = hostImpl->RemoveBundleDataDir(TEST_STRING, 0); 613 auto ret = hostImpl->RemoveBundleDataDir("", 0); 615 ret = hostImpl->RemoveBundleDataDir(TEST_STRING, -1); 617 ret = hostImpl->RemoveBundleDataDir("", -1);
|
H A D | bms_install_daemon_test.cpp | 73 int RemoveBundleDataDir(const std::string &bundleDataDir) const; 154 int BmsInstallDaemonTest::RemoveBundleDataDir(const std::string &bundleDataDir) const in RemoveBundleDataDir() function in OHOS::BmsInstallDaemonTest 419 int result1 = RemoveBundleDataDir(BUNDLE_DATA_DIR); 513 ErrCode ret = InstalldClient::GetInstance()->RemoveBundleDataDir("", USERID); 515 ret = InstalldClient::GetInstance()->RemoveBundleDataDir(BUNDLE_NAME, -1);
|
H A D | bms_install_daemon_ipc_test.cpp | 240 auto ret = proxy->RemoveBundleDataDir(TEST_STRING, 0);
|
/ohos5.0/foundation/bundlemanager/bundle_framework/services/bundlemgr/src/ |
H A D | bundle_exception_handler.cpp | 63 result = InstalldClient::GetInstance()->RemoveBundleDataDir(bundleOrMoudleDir, userId); in RemoveBundleAndDataDir()
|
H A D | installd_client.cpp | 130 ErrCode InstalldClient::RemoveBundleDataDir( in RemoveBundleDataDir() function in OHOS::AppExecFwk::InstalldClient 138 return CallService(&IInstalld::RemoveBundleDataDir, bundleName, userId, isAtomicService, async); in RemoveBundleDataDir()
|
H A D | bundle_multiuser_installer.cpp | 261 if (InstalldClient::GetInstance()->RemoveBundleDataDir(key, userId) != ERR_OK) { in RemoveDataDir()
|
H A D | base_bundle_installer.cpp | 3389 result = RemoveBundleDataDir(info, false, async); in RemoveBundleAndDataDir() 3415 ErrCode BaseBundleInstaller::RemoveBundleDataDir( in RemoveBundleDataDir() function in OHOS::AppExecFwk::BaseBundleInstaller 3419 InstalldClient::GetInstance()->RemoveBundleDataDir(info.GetBundleName(), userId_, in RemoveBundleDataDir() 4208 RemoveBundleDataDir(innerBundleInfo, true); in CreateBundleUserData() 4448 result = RemoveBundleDataDir(innerBundleInfo, false, async); in RemoveBundleUserData()
|
/ohos5.0/foundation/bundlemanager/bundle_framework/services/bundlemgr/test/mock/src/ |
H A D | installd_client.cpp | 120 ErrCode InstalldClient::RemoveBundleDataDir( in RemoveBundleDataDir() function in OHOS::AppExecFwk::InstalldClient 128 return CallService(&IInstalld::RemoveBundleDataDir, bundleName, userId, isAtomicService, async); in RemoveBundleDataDir()
|
H A D | mock_install_client.cpp | 87 ErrCode InstalldClient::RemoveBundleDataDir( in RemoveBundleDataDir() function in OHOS::AppExecFwk::InstalldClient
|
H A D | mock_installd_host_impl.cpp | 74 ErrCode InstalldHostImpl::RemoveBundleDataDir( in RemoveBundleDataDir() function in OHOS::AppExecFwk::InstalldHostImpl
|
/ohos5.0/foundation/bundlemanager/bundle_framework/services/bundlemgr/test/unittest/bms_installd_client_test/ |
H A D | bms_installd_client_test.cpp | 457 ErrCode result = installClient_->RemoveBundleDataDir(bundleName, userid); 472 ErrCode result = installClient_->RemoveBundleDataDir(bundleName, userid); 487 ErrCode result = installClient_->RemoveBundleDataDir(bundleName, userid); 488 …EXPECT_EQ(result, installClient_->CallService(&IInstalld::RemoveBundleDataDir, bundleName, userid,…
|
/ohos5.0/foundation/bundlemanager/bundle_framework/services/bundlemgr/include/ |
H A D | installd_client.h | 75 ErrCode RemoveBundleDataDir(const std::string &bundleName, const int32_t userId,
|
H A D | base_bundle_installer.h | 519 ErrCode RemoveBundleDataDir(
|
/ohos5.0/foundation/bundlemanager/bundle_framework/services/bundlemgr/include/ipc/ |
H A D | installd_interface.h | 141 virtual ErrCode RemoveBundleDataDir(const std::string &bundleDir, const int32_t userId,
|
H A D | installd_proxy.h | 97 virtual ErrCode RemoveBundleDataDir(const std::string &bundleDir, const int32_t userId,
|
/ohos5.0/foundation/bundlemanager/bundle_framework/services/bundlemgr/include/installd/ |
H A D | installd_host_impl.h | 95 virtual ErrCode RemoveBundleDataDir(const std::string &bundleName, const int32_t userId,
|
/ohos5.0/foundation/bundlemanager/bundle_framework/services/bundlemgr/src/clone/ |
H A D | bundle_clone_installer.cpp | 347 if (InstalldClient::GetInstance()->RemoveBundleDataDir(key, userId) != ERR_OK) { in RemoveCloneDataDir()
|
/ohos5.0/foundation/bundlemanager/bundle_framework/services/bundlemgr/src/app_service_fwk/ |
H A D | app_service_fwk_installer.cpp | 142 InstalldClient::GetInstance()->RemoveBundleDataDir(bundleName, 0, false); in UnInstall()
|
/ohos5.0/foundation/bundlemanager/bundle_framework/services/bundlemgr/src/ipc/ |
H A D | installd_host.cpp | 420 ErrCode result = RemoveBundleDataDir(bundleName, userId, isAtomicService, async); in HandleRemoveBundleDataDir()
|
H A D | installd_proxy.cpp | 231 ErrCode InstalldProxy::RemoveBundleDataDir( in RemoveBundleDataDir() function in OHOS::AppExecFwk::InstalldProxy
|
/ohos5.0/foundation/bundlemanager/bundle_framework/services/bundlemgr/test/unittest/bms_bundle_installer_test/ |
H A D | bms_bundle_installer_test.cpp | 2409 auto ret = impl.RemoveBundleDataDir("", USERID); 2412 ret = impl.RemoveBundleDataDir(TEST_STRING, INVAILD_CODE); 2415 ret = impl.RemoveBundleDataDir("", INVAILD_CODE); 2418 ret = impl.RemoveBundleDataDir(TEST_STRING, USERID);
|
/ohos5.0/foundation/bundlemanager/bundle_framework/services/bundlemgr/src/installd/ |
H A D | installd_host_impl.cpp | 771 ErrCode InstalldHostImpl::RemoveBundleDataDir(const std::string &bundleName, const int32_t userId, in RemoveBundleDataDir() function in OHOS::AppExecFwk::InstalldHostImpl
|