Did I find the right examples for you? yes no Crawl my project Python Jobs
All Samples(0) | Call(0) | Derive(0) | Import(0)
src/w/i/winappdbg-1.5/winappdbg/event.py winappdbg(Download)
win32.EXIT_THREAD_DEBUG_EVENT : ExitThreadEvent, # 4 win32.EXIT_PROCESS_DEBUG_EVENT : ExitProcessEvent, # 5 win32.LOAD_DLL_DEBUG_EVENT : LoadDLLEvent, # 6 win32.UNLOAD_DLL_DEBUG_EVENT : UnloadDLLEvent, # 7 win32.OUTPUT_DEBUG_STRING_EVENT : OutputDebugStringEvent, # 8
try: code = event.get_event_code() if code == win32.LOAD_DLL_DEBUG_EVENT: self.__hook_dll(event) elif code == win32.UNLOAD_DLL_DEBUG_EVENT:
def __call__(self, event): try: eventCode = event.get_event_code() if eventCode in (win32.LOAD_DLL_DEBUG_EVENT, win32.LOAD_DLL_DEBUG_EVENT):
self.forward[pid] = handler if isinstance(handler, EventHandler): if eventCode == win32.LOAD_DLL_DEBUG_EVENT: handler.__EventHandler_hook_dll(event) else:
src/w/i/winappdbg-1.5/winappdbg/crash.py winappdbg(Download)
elif self.eventCode in (win32.CREATE_PROCESS_DEBUG_EVENT, win32.EXIT_PROCESS_DEBUG_EVENT, win32.LOAD_DLL_DEBUG_EVENT, win32.UNLOAD_DLL_DEBUG_EVENT): aModule = event.get_module()