ATLAS Offline Software
Loading...
Searching...
No Matches
python.findlib.FindLib Class Reference
Inheritance diagram for python.findlib.FindLib:
Collaboration diagram for python.findlib.FindLib:

Public Member Functions

 __init__ (self)
 invoke (self, arg, from_tty)

Detailed Description

Look up a shared library by address.

findlib ADDR will look up the shared library containing ADDR, if any.
If found, then its symbols will be loaded.

Definition at line 45 of file findlib.py.

Constructor & Destructor Documentation

◆ __init__()

python.findlib.FindLib.__init__ ( self)

Definition at line 52 of file findlib.py.

52 def __init__ (self):
53 super (FindLib, self).__init__ ("findlib", gdb.COMMAND_FILES)
54

Member Function Documentation

◆ invoke()

python.findlib.FindLib.invoke ( self,
arg,
from_tty )

Definition at line 55 of file findlib.py.

55 def invoke (self, arg, from_tty):
56 addr = int(arg.split()[0], 0)
57 return findlib (addr)
58
59

The documentation for this class was generated from the following file: