(self, pid)
| 326 | self.__kb = kb |
| 327 | |
| 328 | def get_eprocess(self, pid): |
| 329 | peprocess = c_uint64() |
| 330 | status = self.__kb.KbGetEprocess(c_uint64(pid), byref(peprocess)) |
| 331 | return status, peprocess |
| 332 | |
| 333 | def get_ethread(self, pid): |
| 334 | pethread = c_uint64() |
nothing calls this directly
no outgoing calls
no test coverage detected