Home
last modified time | relevance | path

Searched refs:PW_METRIC_GLOBAL (Results 1 – 4 of 4) sorted by relevance

/external/pigweed/pw_metric/
Dglobal_test.cc25 PW_METRIC_GLOBAL(stat_x, "stat_x", 123u);
26 PW_METRIC_GLOBAL(stat_y, "stat_y", 123u);
Ddocs.rst111 PW_METRIC_GLOBAL(legacy_do_something, "legacy_do_something");
112 PW_METRIC_GLOBAL(legacy_do_something_else, "legacy_do_something_else");
166 ``PW_METRIC_GLOBAL`` and ``PW_METRIC_GROUP_GLOBAL``
347 .. cpp:function:: PW_METRIC_GLOBAL(identifier, name, value)
360 PW_METRIC_GLOBAL(foo, "foo", 0.2f);
361 PW_METRIC_GLOBAL(bar, "bar", 44000u);
363 Note that metrics defined with ``PW_METRIC_GLOBAL`` should never be added to
365 to one group, and metrics defined with ``PW_METRIC_GLOBAL`` are
370 Do not create ``PW_METRIC_GLOBAL`` instances anywhere other than global
379 Note that metrics created with ``PW_METRIC_GLOBAL`` should never be added to
[all …]
DBUILD.gn41 # This gives access to the "PW_METRIC_GLOBAL()" macros, for globally-registered
/external/pigweed/pw_metric/public/pw_metric/
Dglobal.h32 #define PW_METRIC_GLOBAL(variable_name, metric_name, init) \ macro