Home
last modified time | relevance | path

Searched refs:CHILD_PROCESS_ARGS_FDS_MAX_COUNT (Results 1 – 3 of 3) sorted by relevance

/ohos5.0/foundation/ability/ability_runtime/interfaces/inner_api/app_manager/src/appmgr/
H A Dchild_process_args.cpp30 if (fdsSize > CHILD_PROCESS_ARGS_FDS_MAX_COUNT) { in ReadFromParcel()
31 … TAG_LOGE(AAFwkTag::PROCESSMGR, "fds count must <= %{public}d.", CHILD_PROCESS_ARGS_FDS_MAX_COUNT); in ReadFromParcel()
89 if (fds.size() > CHILD_PROCESS_ARGS_FDS_MAX_COUNT) { in CheckFdsSize()
90 … TAG_LOGE(AAFwkTag::PROCESSMGR, "fds count must <= %{public}d.", CHILD_PROCESS_ARGS_FDS_MAX_COUNT); in CheckFdsSize()
/ohos5.0/foundation/ability/ability_runtime/frameworks/js/napi/inner/napi_common/
H A Dnapi_common_child_process_param.cpp60 if (keyCount > CHILD_PROCESS_ARGS_FDS_MAX_COUNT) { in UnwrapChildProcessFds()
61 … TAG_LOGE(AAFwkTag::PROCESSMGR, "fds count must <= %{public}d.", CHILD_PROCESS_ARGS_FDS_MAX_COUNT); in UnwrapChildProcessFds()
62 errorMsg = "fds count must <= " + std::to_string(CHILD_PROCESS_ARGS_FDS_MAX_COUNT); in UnwrapChildProcessFds()
/ohos5.0/foundation/ability/ability_runtime/interfaces/inner_api/app_manager/include/appmgr/
H A Dchild_process_args.h26 constexpr int32_t CHILD_PROCESS_ARGS_FDS_MAX_COUNT = 16; variable