Lines Matching full:instance
55 * Create static logging instance in read only memory.
73 /** @brief Initialize pointer to logger instance with explicitly provided object.
76 * the given instance, thus not created with @ref LOG_INSTANCE_REGISTER.
79 * @param _object Pointer to a logging instance object.
86 * Create a name for which contains module and instance names.
93 * Returns a pointer associated with given logging instance. When runtime filtering
94 * is enabled then dynamic instance is returned.
96 * @param _name Name of the instance.
98 * @return Pointer to the instance object (static or dynamic).
105 /** @brief Get pointer to a logging instance.
107 * Instance is identified by @p _module_name and @p _inst_name.
110 * @param _inst_name Instance name.
112 * @return Pointer to a logging instance.
117 /** @brief Macro for initializing a pointer to the logger instance.
122 * in the structure that holds pointer to the logging instance. Structure field
125 * @param _name Name of a structure element that have a pointer to logging instance object.
127 * @param _inst_name Instance name.
138 * @brief Declare a logger instance pointer in the module structure.
145 * instance object.
164 * @brief Macro for registering instance for logging with independent filtering.
166 * Module instance provides filtering of logs on instance level instead of
167 * module level. Instance create using this macro can later on be used with
171 * @param _inst_name Instance name.