MCPcopy Create free account
hub / github.com/HoShiMin/Kernel-Bridge / cpuid

Method cpuid

Python-Bridge/Python-Bridge.py:144–147  ·  view source on GitHub ↗
(self, function_id_eax)

Source from the content-addressed store, hash-verified

142 return self.__kb.KbWriteMsr(c_uint(index), c_uint64(value))
143
144 def cpuid(self, function_id_eax):
145 info = self.CpuidInfo()
146 status = self.__kb.KbCpuid(c_uint(function_id_eax), byref(info))
147 return status, info
148
149 def cpuidex(self, function_id_eax, subfunction_id_ecx):
150 info = self.CpuidInfo()

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected