Package winappdbg :: Module event :: Class Event
[hide private]
[frames] | no frames]

Class Event

source code


Event object.

Instance Methods [hide private]
 
__init__(self, debug, raw)
x.__init__(...) initializes x; see help(type(x)) for signature
source code
str
get_event_name(self)
Returns: User-friendly name of the event.
source code
str
get_event_description(self)
Returns: User-friendly description of the event.
source code
int
get_event_code(self)
Returns: Debug event code as defined in the Win32 API.
source code
int
get_pid(self)
Returns: Process global ID where the event occured.
source code
int
get_tid(self)
Returns: Thread global ID where the event occured.
source code
Process
get_process(self)
Returns: Process where the event occured.
source code
Thread
get_thread(self)
Returns: Thread where the event occured.
source code

Inherited from object: __delattr__, __format__, __getattribute__, __hash__, __new__, __reduce__, __reduce_ex__, __repr__, __setattr__, __sizeof__, __str__, __subclasshook__

Class Variables [hide private]
str eventMethod = 'unknown_event'
Method name to call when using EventHandler subclasses.
str eventName = 'Unknown event'
User-friendly name of the event.
str eventDescription = 'A debug event of an unknown type has occur...
User-friendly description of the event.
Instance Variables [hide private]
int continueStatus
Continue status to pass to win32.ContinueDebugEvent.
Debug debug
Debug object that received the event.
DEBUG_EVENT raw
Raw DEBUG_EVENT structure as used by the Win32 API.
Properties [hide private]

Inherited from object: __class__

Method Details [hide private]

__init__(self, debug, raw)
(Constructor)

source code 

x.__init__(...) initializes x; see help(type(x)) for signature

Parameters:
  • debug (Debug) - Debug object that received the event.
  • raw (DEBUG_EVENT) - Raw DEBUG_EVENT structure as used by the Win32 API.
Overrides: object.__init__

get_event_name(self)

source code 
Returns: str
User-friendly name of the event.

get_event_description(self)

source code 
Returns: str
User-friendly description of the event.

get_event_code(self)

source code 
Returns: int
Debug event code as defined in the Win32 API.

get_pid(self)

source code 
Returns: int
Process global ID where the event occured.

See Also: get_process

get_tid(self)

source code 
Returns: int
Thread global ID where the event occured.

See Also: get_thread

get_process(self)

source code 
Returns: Process
Process where the event occured.

See Also: get_pid

get_thread(self)

source code 
Returns: Thread
Thread where the event occured.

See Also: get_tid


Class Variable Details [hide private]

eventMethod

Method name to call when using EventHandler subclasses. Used internally.
Type:
str
Value:
'unknown_event'

eventDescription

User-friendly description of the event.
Type:
str
Value:
'A debug event of an unknown type has occured.'