![]() |
Dash Core
0.12.2.1
P2P Digital Currency
|
Classes | |
class | CPPFilt |
Functions | |
def | read_symbols (executable, imports=True) |
def | check_version (max_versions, version) |
def | read_libraries (filename) |
Variables | |
dictionary | MAX_VERSIONS |
dictionary | IGNORE_EXPORTS |
READELF_CMD = os.getenv('READELF', '/usr/bin/readelf') | |
CPPFILT_CMD = os.getenv('CPPFILT', '/usr/bin/c++filt') | |
dictionary | ALLOWED_LIBRARIES |
cppfilt = CPPFilt() | |
int | retval = 0 |
def symbol-check.check_version | ( | max_versions, | |
version | |||
) |
Definition at line 113 of file symbol-check.py.
def symbol-check.read_libraries | ( | filename | ) |
Definition at line 124 of file symbol-check.py.
def symbol-check.read_symbols | ( | executable, | |
imports = True |
|||
) |
Parse an ELF executable and return a list of (symbol,version) tuples for dynamic, imported symbols.
Definition at line 92 of file symbol-check.py.
dictionary symbol-check.ALLOWED_LIBRARIES |
Definition at line 55 of file symbol-check.py.
symbol-check.cppfilt = CPPFilt() |
Definition at line 141 of file symbol-check.py.
symbol-check.CPPFILT_CMD = os.getenv('CPPFILT', '/usr/bin/c++filt') |
Definition at line 53 of file symbol-check.py.
dictionary symbol-check.IGNORE_EXPORTS |
Definition at line 49 of file symbol-check.py.
dictionary symbol-check.MAX_VERSIONS |
Definition at line 39 of file symbol-check.py.
symbol-check.READELF_CMD = os.getenv('READELF', '/usr/bin/readelf') |
Definition at line 52 of file symbol-check.py.
int symbol-check.retval = 0 |
Definition at line 142 of file symbol-check.py.