(self)
| 162 | return status, value |
| 163 | |
| 164 | def rdtscp(self): |
| 165 | value = c_uint64() |
| 166 | aux = c_uint() |
| 167 | status = self.__kb.KbReadTsc(byref(value), byref(aux)) |
| 168 | return status, value, aux |
| 169 | |
| 170 | class VirtualMemory: |
| 171 | def __init__(self, kb): |
nothing calls this directly
no outgoing calls
no test coverage detected