Package autodesk_toxik :: Module debug :: Class LibInfo
[frames] | no frames]

Class LibInfo

 object --+    
          |    
Boost.Python.instance --+
              |
             LibInfo

Contains information about a DLL loaded in memory.

Nested Classes
  MemSegFlags
Instance Methods
 
__init__(...)
Raises an exception This class cannot be instantiated from Python
 
__reduce__(...)
helper for pickle
str
getAddr(...)
Returns: A str representing the current address of the dynamic library.
str
getMemSegments(...)
Returns: A list of triples, each representing a memory segment in the following format: (type, start addr, end addr).
str
getOrigAddr(...)
Returns: A string representing the original address of the dynamic library.
str
getPath(...)
Returns: The path of the dynamic library.

Inherited from Boost.Python.instance: __new__

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

Properties

Inherited from object: __class__

Method Details

__init__(...)
(Constructor)

 

Raises an exception This class cannot be instantiated from Python

Overrides: object.__init__

__reduce__(...)

 

helper for pickle

Overrides: object.__reduce__
(inherited documentation)

getAddr(...)

 
Returns: str
A str representing the current address of the dynamic library.

getMemSegments(...)

 
Returns: str
A list of triples, each representing a memory segment in the following format: (type, start addr, end addr). Addresses are expressed with hex strings.

getOrigAddr(...)

 
Returns: str
A string representing the original address of the dynamic library.

getPath(...)

 
Returns: str
The path of the dynamic library.