(self, tid, access_mask, obj_attributes)
| 352 | return status, handle |
| 353 | |
| 354 | def open_thread(self, tid, access_mask, obj_attributes): |
| 355 | handle = c_uint64() |
| 356 | status = self.__kb.KbOpenThread(c_uint64(tid), byref(handle), c_uint(access_mask), c_uint(obj_attributes)) |
| 357 | return status, handle |
| 358 | |
| 359 | def open_thread_by_ptr(self, pethread, access_mask, obj_attributes, processor_mode): |
| 360 | handle = c_uint64() |
nothing calls this directly
no outgoing calls
no test coverage detected