Lines Matching refs:statistic
32 #define MYSQLND_STAT_CALL_TRIGGER(s_array, statistic, val) \ argument
33 if ((s_array)->triggers[(statistic)] && (s_array)->in_trigger == FALSE) { \
37 (s_array)->triggers[(statistic)]((s_array), (statistic), (val)); \
43 #define MYSQLND_STAT_CALL_TRIGGER(s_array, statistic, val) argument
46 #define MYSQLND_UPDATE_VALUE_AND_CALL_TRIGGER(stats, statistic, value) \ argument
49 (stats)->values[(statistic)] += (value); \
50 MYSQLND_STAT_CALL_TRIGGER((stats), (statistic), (value)); \
54 #define MYSQLND_DEC_STATISTIC(enabler, stats, statistic) \ argument
56 enum_mysqlnd_collected_stats _s = (statistic);\
63 #define MYSQLND_INC_STATISTIC(enabler, stats, statistic) \ argument
65 enum_mysqlnd_collected_stats _s = (statistic);\
72 #define MYSQLND_INC_STATISTIC_W_VALUE(enabler, stats, statistic, value) \ argument
74 enum_mysqlnd_collected_stats _s = (statistic);\