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

Method cpuidex

Python-Bridge/Python-Bridge.py:149–152  ·  view source on GitHub ↗
(self, function_id_eax, subfunction_id_ecx)

Source from the content-addressed store, hash-verified

147 return status, info
148
149 def cpuidex(self, function_id_eax, subfunction_id_ecx):
150 info = self.CpuidInfo()
151 status = self.__kb.KbCpuidEx(c_uint(function_id_eax), c_uint(subfunction_id_ecx), byref(info))
152 return status, info
153
154 def rdpmc(self, index):
155 value = c_uint64()

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected