(self, pid, access_mask, obj_attributes)
| 336 | return status, pethread |
| 337 | |
| 338 | def open_process(self, pid, access_mask, obj_attributes): |
| 339 | handle = c_uint64() |
| 340 | status = self.__kb.KbOpenProcess(c_uint64(pid), byref(handle), c_uint(access_mask), c_uint(obj_attributes)) |
| 341 | return status, handle |
| 342 | |
| 343 | def open_process_by_ptr(self, peprocess, access_mask, obj_attributes, processor_mode): |
| 344 | handle = c_uint64() |
nothing calls this directly
no outgoing calls
no test coverage detected