Return the ascii name of this counter.
(self)
| 345 | return self.data.IntAt(self.offset) |
| 346 | |
| 347 | def Name(self): |
| 348 | """Return the ascii name of this counter.""" |
| 349 | result = "" |
| 350 | index = self.offset + 4 |
| 351 | current = self.data.ByteAt(index) |
| 352 | while current: |
| 353 | result += chr(current) |
| 354 | index += 1 |
| 355 | current = self.data.ByteAt(index) |
| 356 | return result |
| 357 | |
| 358 | |
| 359 | class CounterCollection(object): |
no test coverage detected