(self, pid)
| 331 | return status, peprocess |
| 332 | |
| 333 | def get_ethread(self, pid): |
| 334 | pethread = c_uint64() |
| 335 | status = self.__kb.KbGetEthread(c_uint64(pid), byref(pethread)) |
| 336 | return status, pethread |
| 337 | |
| 338 | def open_process(self, pid, access_mask, obj_attributes): |
| 339 | handle = c_uint64() |
nothing calls this directly
no outgoing calls
no test coverage detected