Lines Matching full:entry
13 * each group consisting of a set of "entries". An entry corresponds to an
14 * individual counter. Each entry can optionally be named if the STATS_NAMES
30 * - STATS_SECT_ENTRY(): default statistic entry, 32-bits.
39 * Following the static entry declaration is the statistic names declaration.
106 * @brief Declares a 32-bit stat entry inside a group struct.
108 * @param var__ The name to assign to the entry.
113 * @brief Declares a 16-bit stat entry inside a group struct.
115 * @param var__ The name to assign to the entry.
120 * @brief Declares a 32-bit stat entry inside a group struct.
122 * @param var__ The name to assign to the entry.
127 * @brief Declares a 64-bit stat entry inside a group struct.
129 * @param var__ The name to assign to the entry.
134 * @brief Increases a statistic entry by the specified amount.
136 * Increases a statistic entry by the specified amount. Compiled out if
139 * @param group__ The group containing the entry to increase.
140 * @param var__ The statistic entry to increase.
141 * @param n__ The amount to increase the statistic entry by.
147 * @brief Increments a statistic entry.
149 * Increments a statistic entry by one. Compiled out if CONFIG_STATS is not
152 * @param group__ The group containing the entry to increase.
153 * @param var__ The statistic entry to increase.
159 * @brief Set a statistic entry to the specified amount.
161 * Set a statistic entry to the specified amount. Compiled out if
164 * @param group__ The group containing the entry to increase.
165 * @param var__ The statistic entry to increase.
166 * @param n__ The amount to set the statistic entry to.
172 * @brief Sets a statistic entry to zero.
174 * Sets a statistic entry to zero. Compiled out if CONFIG_STATS is not
177 * @param group__ The group containing the entry to clear.
178 * @param var__ The statistic entry to clear.
196 * @param size__ The size of each entry in the statistics group,
227 * @param group__ The group containing the entry to clear.
228 * @param var__ The statistic entry to clear.
283 * @brief Function that gets applied to every stat entry during a walk.
285 * @param hdr The group containing the stat entry being
288 * @param name The name of the statistic entry to process
289 * @param off The offset of the entry, from `hdr`.
298 * @brief Applies a function to every stat entry in a group.
301 * @param walk_cb The function to apply to each stat entry.