Home
last modified time | relevance | path

Searched refs:keepData (Results 1 – 18 of 18) sorted by relevance

/ohos5.0/foundation/bundlemanager/bundle_framework_lite/services/bundlemgr_lite/include/
H A Dbundle_daemon_client.h43 int32_t RemoveInstallDirectory(const char *codePath, const char *dataPath, bool keepData);
44 …ClientInvoke(int32_t funcId, const char *firstPath, const char *secondPath, bool keepData = false);
H A Dbundle_inner_feature.h37 bool keepData; member
/ohos5.0/foundation/bundlemanager/bundle_framework_lite/services/bundlemgr_lite/src/
H A Dbundle_daemon_client.cpp208 bool keepData) in RegisterCallback() argument
220 WriteBool(&request, keepData); in RegisterCallback()
364 …ndleDaemonClient::RemoveInstallDirectory(const char *codePath, const char *dataPath, bool keepData) in RegisterCallback() argument
374 return CallClientInvoke(REMOVE_INSTALL_DIRECTORY, codePath, dataPath, keepData); in RegisterCallback()
H A Dbundle_manager_service.cpp234 InstallParam installParam = {.installLocation = 1, .keepData = info->keepData}; in ServiceMsgProcess()
302 InstallParam installParam = {.installLocation = installLocation, .keepData = false}; in InstallThirdBundle()
342 InstallParam installParam = {.installLocation = 1, .keepData = false}; in InstallSystemBundle()
451 InstallParam installParam = {.installLocation = 1, .keepData = false}; in ReloadEntireBundleInfo()
H A Dbundle_inner_feature.cpp175 info->keepData = false; in GetSvcIdentityInfo()
213 ReadBool(req, &(info->keepData)); in UninstallInnerBundle()
H A Dbundle_installer.cpp450 bundleInfo->codePath, bundleInfo->dataPath, installParam.keepData) != EC_SUCCESS) { in Uninstall()
/ohos5.0/foundation/bundlemanager/bundle_framework_lite/services/bundlemgr_lite/bundle_daemon/src/
H A Dbundle_daemon.cpp258 bool keepData; in RemoveInstallDirectoryInvoke() local
259 ReadBool(req, &keepData); in RemoveInstallDirectoryInvoke()
260 …aemon::GetInstance().handler_.RemoveInstallDirectory(codePath.c_str(), dataPath.c_str(), keepData); in RemoveInstallDirectoryInvoke()
H A Dbundle_daemon_handler.cpp156 …dleDaemonHandler::RemoveInstallDirectory(const char *codePath, const char *dataPath, bool keepData) in RemoveInstallDirectory() argument
159 if (!keepData) { in RemoveInstallDirectory()
/ohos5.0/docs/zh-cn/device-dev/subsystems/
H A Dsubsys-application-framework-guide.md302 .keepData = false
337 …卸载应用的时候可以选择是否保留应用的数据,开发者可以通过创建的InstallParam实例的成员变量keepData来确定。当keepData为true, 卸载应用之后将保留应用的数据,当keep…
344 .keepData = false // 不保留应用数据
/ohos5.0/foundation/bundlemanager/bundle_framework_lite/interfaces/kits/bundle_lite/
H A Dinstall_param.h68 bool keepData; member
/ohos5.0/foundation/bundlemanager/bundle_framework_lite/services/bundlemgr_lite/bundle_daemon/include/
H A Dbundle_daemon_handler.h34 int32_t RemoveInstallDirectory(const char *codePath, const char *dataPath, bool keepData);
/ohos5.0/foundation/ability/ability_lite/services/abilitymgr_lite/unittest/utils/
H A Dability_test_helper.cpp120 .keepData = false in TestInstall()
135 .keepData = false in TestUnInstall()
/ohos5.0/foundation/multimedia/image_framework/plugins/common/libs/image/libjpegplugin/src/
H A Dexif_maker_note.cpp167 auto *keepData = exifEntry->data; in GetValue() local
175 exifEntry->data = keepData; in GetValue()
/ohos5.0/foundation/bundlemanager/bundle_framework_lite/services/bundlemgr_lite/tools/src/
H A Dcommand_parser.cpp51 static InstallParam g_installParam = { .installLocation = 1, .keepData = false };
/ohos5.0/docs/en/device-dev/subsystems/
H A Dsubsys-application-framework-guide.md471 .keepData = false
505 …in application data using the **keepData** member variable in the created **InstallParam** ins…
513 .keepData = false // Remove application data.
/ohos5.0/foundation/bundlemanager/bundle_framework_lite/frameworks/bundle_lite/src/
H A Dbundle_manager.cpp434 WriteBool(&ipcIo, installParam->keepData); in Uninstall()
/ohos5.0/foundation/bundlemanager/bundle_framework/services/bundlemgr/include/
H A Dbundle_data_mgr.h919 void DeleteUserDataGroupInfos(const std::string &bundleName, int32_t userId, bool keepData);
/ohos5.0/foundation/bundlemanager/bundle_framework/services/bundlemgr/src/
H A Dbundle_data_mgr.cpp7426 …ndleDataMgr::DeleteUserDataGroupInfos(const std::string &bundleName, int32_t userId, bool keepData) in DeleteUserDataGroupInfos() argument
7446 if (!keepData && !IsDataGroupIdExistNoLock(groupId, userId)) { in DeleteUserDataGroupInfos()