Lines Matching refs:_field

205 #define dp_assert_always_internal_stat(_expr, _handle, _field) \  argument
206 (qdf_unlikely(!(_expr)) ? ((_handle)->stats._field++, true) : false)
208 #define dp_assert_always_internal_ds_stat(_expr, _handle, _field) \ argument
209 ((_handle)->ppeds_stats._field++)
225 #define dp_assert_always_internal_stat(_expr, _handle, _field) \ argument
228 #define dp_assert_always_internal_ds_stat(_expr, _handle, _field) \ argument
1134 #define DP_STATS_INC(_handle, _field, _delta) \ argument
1137 _handle->stats._field += _delta; \
1140 #define DP_PEER_LINK_STATS_INC(_handle, _field, _delta, _link) \ argument
1143 _handle->stats[_link]._field += _delta; \
1146 #define DP_PEER_STATS_FLAT_INC(_handle, _field, _delta) \ argument
1149 _handle->_field += _delta; \
1152 #define DP_STATS_INCC(_handle, _field, _delta, _cond) \ argument
1155 _handle->stats._field += _delta; \
1158 #define DP_PEER_LINK_STATS_INCC(_handle, _field, _delta, _cond, _link) \ argument
1161 _handle->stats[_link]._field += _delta; \
1164 #define DP_STATS_DEC(_handle, _field, _delta) \ argument
1167 _handle->stats._field -= _delta; \
1170 #define DP_PEER_STATS_FLAT_DEC(_handle, _field, _delta) \ argument
1173 _handle->_field -= _delta; \
1176 #define DP_STATS_UPD(_handle, _field, _delta) \ argument
1179 _handle->stats._field = _delta; \
1182 #define DP_PEER_LINK_STATS_UPD(_handle, _field, _delta, _link) \ argument
1185 _handle->stats[_link]._field = _delta; \
1188 #define DP_STATS_INC_PKT(_handle, _field, _count, _bytes) \ argument
1190 DP_STATS_INC(_handle, _field.num, _count); \
1191 DP_STATS_INC(_handle, _field.bytes, _bytes) \
1194 #define DP_PEER_STATS_FLAT_INC_PKT(_handle, _field, _count, _bytes) \ argument
1196 DP_PEER_STATS_FLAT_INC(_handle, _field.num, _count); \
1197 DP_PEER_STATS_FLAT_INC(_handle, _field.bytes, _bytes) \
1200 #define DP_STATS_INCC_PKT(_handle, _field, _count, _bytes, _cond) \ argument
1202 DP_STATS_INCC(_handle, _field.num, _count, _cond); \
1203 DP_STATS_INCC(_handle, _field.bytes, _bytes, _cond) \
1206 #define DP_STATS_AGGR(_handle_a, _handle_b, _field) \ argument
1208 _handle_a->stats._field += _handle_b->stats._field; \
1211 #define DP_STATS_AGGR_PKT(_handle_a, _handle_b, _field) \ argument
1213 DP_STATS_AGGR(_handle_a, _handle_b, _field.num); \
1214 DP_STATS_AGGR(_handle_a, _handle_b, _field.bytes);\
1217 #define DP_STATS_AGGR_IDX(_handle_a, _handle_b, _arr, _field, _idx) \ argument
1219 _handle_a->stats._arr._field += _handle_b->stats._arr[_idx]._field; \
1222 #define DP_STATS_AGGR_PKT_IDX(_handle_a, _handle_b, _arr, _field, _idx)\ argument
1224 DP_STATS_AGGR_IDX(_handle_a, _handle_b, _arr, _field.num, _idx); \
1225 DP_STATS_AGGR_IDX(_handle_a, _handle_b, _arr, _field.bytes, _idx);\
1228 #define DP_STATS_UPD_STRUCT(_handle_a, _handle_b, _field) \ argument
1230 _handle_a->stats._field = _handle_b->stats._field; \
1234 #define DP_STATS_INC(_handle, _field, _delta) argument
1235 #define DP_PEER_LINK_STATS_INC(_handle, _field, _delta, _link) argument
1236 #define DP_PEER_STATS_FLAT_INC(_handle, _field, _delta) argument
1237 #define DP_STATS_INCC(_handle, _field, _delta, _cond) argument
1238 #define DP_PEER_LINK_STATS_INCC(_handle, _field, _delta, _cond, _link) argument
1239 #define DP_STATS_DEC(_handle, _field, _delta) argument
1240 #define DP_PEER_STATS_FLAT_DEC(_handle, _field, _delta) argument
1241 #define DP_STATS_UPD(_handle, _field, _delta) argument
1242 #define DP_PEER_LINK_STATS_UPD(_handle, _field, _delta, _link) argument
1243 #define DP_STATS_INC_PKT(_handle, _field, _count, _bytes) argument
1244 #define DP_PEER_STATS_FLAT_INC_PKT(_handle, _field, _count, _bytes) argument
1245 #define DP_STATS_INCC_PKT(_handle, _field, _count, _bytes, _cond) argument
1246 #define DP_STATS_AGGR(_handle_a, _handle_b, _field) argument
1247 #define DP_STATS_AGGR_PKT(_handle_a, _handle_b, _field) argument
1248 #define DP_STATS_AGGR_IDX(_handle_a, _handle_b, _arr, _field, _idx) argument
1249 #define DP_STATS_AGGR_PKT_IDX(_handle_a, _handle_b, _arr, _field, _idx) argument
1252 #define DP_PEER_PER_PKT_STATS_INC(_handle, _field, _delta, _link) \ argument
1254 DP_PEER_LINK_STATS_INC(_handle, per_pkt_stats._field, _delta, _link); \
1257 #define DP_PEER_PER_PKT_STATS_INCC(_handle, _field, _delta, _cond, _link) \ argument
1259 DP_PEER_LINK_STATS_INCC(_handle, per_pkt_stats._field, _delta, _cond, _link); \
1262 #define DP_PEER_PER_PKT_STATS_INC_PKT(_handle, _field, _count, _bytes, _link) \ argument
1264 DP_PEER_PER_PKT_STATS_INC(_handle, _field.num, _count, _link); \
1265 DP_PEER_PER_PKT_STATS_INC(_handle, _field.bytes, _bytes, _link) \
1268 #define DP_PEER_PER_PKT_STATS_INCC_PKT(_handle, _field, _count, _bytes, _cond, _link) \ argument
1270 DP_PEER_PER_PKT_STATS_INCC(_handle, _field.num, _count, _cond, _link); \
1271 DP_PEER_PER_PKT_STATS_INCC(_handle, _field.bytes, _bytes, _cond, _link) \
1274 #define DP_PEER_PER_PKT_STATS_UPD(_handle, _field, _delta, _link) \ argument
1276 DP_PEER_LINK_STATS_UPD(_handle, per_pkt_stats._field, _delta, _link); \
1280 #define DP_PEER_EXTD_STATS_INC(_handle, _field, _delta, _link) \ argument
1282 DP_PEER_LINK_STATS_INC(_handle, extd_stats._field, _delta, _link); \
1285 #define DP_PEER_EXTD_STATS_INCC(_handle, _field, _delta, _cond, _link) \ argument
1287 DP_PEER_LINK_STATS_INCC(_handle, extd_stats._field, _delta, _cond, _link); \
1290 #define DP_PEER_EXTD_STATS_UPD(_handle, _field, _delta, _link) \ argument
1292 DP_PEER_LINK_STATS_UPD(_handle, extd_stats._field, _delta, _link); \