Home
last modified time | relevance | path

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

/ohos5.0/foundation/arkui/ace_engine/frameworks/core/common/
H A Dcontainer_scope.cpp68 std::pair<int32_t, InstanceIdGenReason> ContainerScope::CurrentIdWithReason() in CurrentIdWithReason()
72 return { currentId, InstanceIdGenReason::SCOPE }; in CurrentIdWithReason()
76 return { INSTANCE_ID_UNDEFINED, InstanceIdGenReason::UNDEFINED }; in CurrentIdWithReason()
79 return { SingletonId(), InstanceIdGenReason::SINGLETON }; in CurrentIdWithReason()
83 return { currentId, InstanceIdGenReason::ACTIVE }; in CurrentIdWithReason()
87 return { currentId, InstanceIdGenReason::FOREGROUND }; in CurrentIdWithReason()
89 return { ContainerScope::DefaultId(), InstanceIdGenReason::DEFAULT }; in CurrentIdWithReason()
H A Dcontainer_scope.h32 enum class InstanceIdGenReason : uint32_t { enum
58 static std::pair<int32_t, InstanceIdGenReason> CurrentIdWithReason();
/ohos5.0/foundation/arkui/ace_engine/adapter/ohos/osal/
H A Dlog_wrapper.cpp154 std::pair<int32_t, InstanceIdGenReason> idWithReason = ContainerScope::CurrentIdWithReason(); in GetIdWithReason()