(self, index, value)
| 139 | return status, value |
| 140 | |
| 141 | def wrmsr(self, index, value): |
| 142 | return self.__kb.KbWriteMsr(c_uint(index), c_uint64(value)) |
| 143 | |
| 144 | def cpuid(self, function_id_eax): |
| 145 | info = self.CpuidInfo() |
nothing calls this directly
no outgoing calls
no test coverage detected