Return the index'th counter.
(self, index)
| 375 | return self.data.IntAt(12) |
| 376 | |
| 377 | def Counter(self, index): |
| 378 | """Return the index'th counter.""" |
| 379 | return Counter(self.data, 16 + index * self.CounterSize()) |
| 380 | |
| 381 | def CounterSize(self): |
| 382 | """Return the size of a single counter.""" |
no test coverage detected