Lines Matching refs:core

24  * Services and features are initialized in the following sequence: core phase, core system

25 * service, core system feature, system startup, system service, system feature, application-layer
81 * @brief Identifies the entry for initializing and starting a core phase by the priority 2.
84 * This macro is used to identify the entry called at the priority 2 of the core phase of
87 * @param func Indicates the entry function for initializing and starting a core phase.
90 #define CORE_INIT(func) LAYER_INITCALL_DEF(func, core, "core")
92 * @brief Identifies the entry for initializing and starting a core phase by the specified
96 * This macro is used to identify the entry called at the specified priority of the core phase of
99 * @param func Indicates the entry function for initializing and starting a core phase.
101 * @param priority Indicates the calling priority when starting the core phase.
104 #define CORE_INIT_PRI(func, priority) LAYER_INITCALL(func, core, "core", priority)
107 * @brief Identifies the entry for initializing and starting a core system service by the
110 * This macro is used to identify the entry called at the priority 2 in the core system
113 * @param func Indicates the entry function for initializing and starting a core system service.
118 * @brief Identifies the entry for initializing and starting a core system service by the
121 * This macro is used to identify the entry called at the specified priority in the core system
124 * @param func Indicates the entry function for initializing and starting a core system service.
126 * @param priority Indicates the calling priority when starting the core system service in the
132 * @brief Identifies the entry for initializing and starting a core system feature by the
135 * This macro is used to identify the entry called at the priority 2 in the core system
138 * @param func Indicates the entry function for initializing and starting a core system service.
143 * @brief Identifies the entry for initializing and starting a core system feature by the
146 * This macro is used to identify the entry called at the specified priority in the core system
149 * @param func Indicates the entry function for initializing and starting a core system feature.
151 * @param priority Indicates the calling priority when starting the core system feature phase.