Return the number of counters in active use.
(self)
| 371 | self.max_name_size = data.IntAt(8) |
| 372 | |
| 373 | def CountersInUse(self): |
| 374 | """Return the number of counters in active use.""" |
| 375 | return self.data.IntAt(12) |
| 376 | |
| 377 | def Counter(self, index): |
| 378 | """Return the index'th counter.""" |
no test coverage detected