Home
last modified time | relevance | path

Searched refs:isKeepAlive (Results 1 - 25 of 41) sorted by relevance

12

/foundation/ability/ability_runtime/interfaces/inner_api/app_manager/src/appmgr/
H A Dprocess_data.cpp29 parcel.WriteBool(isKeepAlive) && parcel.WriteBool(isFocused) && parcel.WriteInt32(requestProcCode) && in Marshalling()
46 isKeepAlive = parcel.ReadBool(); in ReadFromParcel()
H A Drunning_process_info.cpp45 isKeepAlive = parcel.ReadBool(); in ReadFromParcel()
85 WRITE_PARCEL_AND_RETURN_FALSE_IF_FAIL(Bool, parcel, isKeepAlive); in Marshalling()
/foundation/ability/ability_runtime/test/unittest/resident_process_manager_test/
H A Dresident_process_manager_test.cpp71 bundleInfo1.isKeepAlive = true; in HWTEST_F()
73 bundleInfo2.isKeepAlive = true; in HWTEST_F()
/foundation/bundlemanager/bundle_framework_lite/frameworks/bundle_lite/src/
H A Dbundle_info_utils.cpp65 des->isKeepAlive = src.isKeepAlive; in CopyBundleInfo()
109 des->isKeepAlive = src.isKeepAlive; in CopyBundleInfoNoReplication()
H A Dconvert_utils.cpp29 const char BUNDLEINFO_JSON_KEY_KEEPALIVE[] = "isKeepAlive";
245 cJSON_AddBoolToObject(root, BUNDLEINFO_JSON_KEY_KEEPALIVE, bundleInfo->isKeepAlive) == nullptr || in ConvertBundleInfoPartToJson()
586 bundleInfo->isKeepAlive = cJSON_IsTrue(item); in ConvertJsonToBundleInfo()
/foundation/bundlemanager/bundle_framework_lite/interfaces/kits/bundle_lite/
H A Dbundle_info.h53 bool isKeepAlive; member
/foundation/ability/ability_runtime/interfaces/inner_api/app_manager/include/appmgr/
H A Dprocess_data.h58 bool isKeepAlive = false; member
H A Drunning_process_info.h60 bool isKeepAlive = false; member
/foundation/ability/ability_runtime/services/appmgr/src/
H A Dexit_resident_process_manager.cpp114 if (!bundleInfo.isKeepAlive) { in QueryExitBundleInfos()
/foundation/bundlemanager/bundle_framework_lite/services/bundlemgr_lite/src/
H A Dbundle_map.cpp153 newBundleInfo.isKeepAlive = bundleInfo->isKeepAlive; in GetCopyBundleInfo()
H A Dbundle_info_creator.cpp114 bundleInfo->isKeepAlive = bundleProfile.isKeepAlive; in SetBundleInfo()
H A Dbundle_ms_feature.cpp448 if (allBundleInfos[i].isKeepAlive && allBundleInfos[i].isSystemApp) { in QueryKeepAliveBundleInfos()
466 if (allBundleInfos[i].isKeepAlive && allBundleInfos[i].isSystemApp) { in QueryKeepAliveBundleInfos()
/foundation/ability/ability_runtime/test/mock/common/include/
H A Dmock_bundle_manager_proxy.h102 bundleInfo.isKeepAlive = true; in GetBundleInfos()
H A Dmock_bundle_manager_service.h104 bundleInfo.isKeepAlive = true; in GetBundleInfos()
/foundation/bundlemanager/bundle_framework/interfaces/inner_api/appexecfwk_base/include/
H A Dbundle_info.h114 bool isKeepAlive = false; member
/foundation/bundlemanager/bundle_framework_lite/services/bundlemgr_lite/include/
H A Dbundle_common.h236 bool isKeepAlive; member
/foundation/ability/ability_runtime/frameworks/js/napi/app/app_manager/
H A Djs_app_manager_utils.cpp79 napi_set_named_property(env, object, "isKeepAlive", CreateJsValue(env, processData.isKeepAlive)); in CreateJsProcessData()
/foundation/bundlemanager/bundle_framework/interfaces/inner_api/appexecfwk_base/src/
H A Dbundle_info.cpp30 const char* BUNDLE_INFO_IS_KEEP_ALIVE = "isKeepAlive";
236 isKeepAlive = parcel.ReadBool(); in ReadFromParcel()
399 WRITE_PARCEL_AND_RETURN_FALSE_IF_FAIL(Bool, parcel, isKeepAlive); in Marshalling()
636 {BUNDLE_INFO_IS_KEEP_ALIVE, bundleInfo.isKeepAlive}, {BUNDLE_INFO_IS_NATIVE_APP, bundleInfo.isNativeApp}, in to_json()
712 bundleInfo.isKeepAlive, in from_json()
/foundation/ability/ability_lite/services/abilitymgr_lite/src/
H A Dability_mgr_handler.cpp257 && bundleInfo.isKeepAlive) { in RestartApp()
/foundation/resourceschedule/resource_schedule_service/ressched/plugins/cgroup_sched_plugin/framework/sched_controller/
H A Dapp_state_observer.cpp119 payload["isKeepAlive"] = std::to_string(processData.isKeepAlive); in MarshallingProcessData()
/foundation/ability/ability_runtime/services/abilitymgr/src/
H A Dability_record.cpp370 auto isKeepAlive = GetKeepAlive(); in CanRestartResident() local
371 TAG_LOGD(AAFwkTag::ABILITYMGR, "isKeepAlive: %{public}d, isRestarting: %{public}d, restartCount: %{public}d", in CanRestartResident()
372 isKeepAlive, isRestarting_, restartCount_); in CanRestartResident()
373 if (isKeepAlive && isRestarting_ && (restartCount_ < 0)) { in CanRestartResident()
2301 std::string isKeepAlive = GetKeepAlive() ? "true" : "false"; in Dump() local
2302 dumpInfo = " isKeepAlive: " + isKeepAlive; in Dump()
2406 std::string isKeepAlive = GetKeepAlive() ? "true" : "false"; in DumpAbilityState() local
2407 dumpInfo = " isKeepAlive: " + isKeepAlive; in DumpAbilityState()
2465 std::string isKeepAlive = GetKeepAlive() ? "true" : "false"; DumpService() local
[all...]
/foundation/ability/ability_runtime/test/unittest/frameworks_kits_appkit_native_test/
H A Dcontext_impl_test.cpp768 bundleInfo.isKeepAlive = true; in HWTEST_F()
805 bundleInfo.isKeepAlive = true; in HWTEST_F()
857 bundleInfo.isKeepAlive = true; in HWTEST_F()
906 bundleInfo.isKeepAlive = true; in HWTEST_F()
/foundation/ability/ability_runtime/services/abilitymgr/src/resident_process/
H A Dresident_process_manager.cpp78 bool keepAliveEnable = bundleInfos[i].isKeepAlive; in StartResidentProcessWithMainElement()
/foundation/ability/ability_runtime/frameworks/js/napi/app/js_app_manager/
H A Djs_app_manager_utils.cpp109 napi_set_named_property(env, object, "isKeepAlive", CreateJsValue(env, processData.isKeepAlive)); in CreateJsProcessData()
/foundation/ability/ability_runtime/test/mock/services_abilitymgr_test/libs/appexecfwk_core/include/bundlemgr/
H A Dmock_bundle_manager.h275 bundleInfo.isKeepAlive = true; in GetBundleInfos()

Completed in 21 milliseconds

12