libdebug.data.symbol_list
SymbolList
Bases: list
A list of symbols in the target process.
Source code in libdebug/data/symbol_list.py
__eq__(other)
__getitem__(key)
Returns the symbol with the specified name.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
key
|
(str, int)
|
The name of the symbol to return, or the index of the symbol in the list. |
required |
Returns:
Type | Description |
---|---|
SymbolList[Symbol] | Symbol
|
Symbol | SymbolList[Symbol]: The symbol at the specified index, or the SymbolList of symbols with the specified name. |
Source code in libdebug/data/symbol_list.py
__hash__()
__init__(symbols, maps_source)
__repr__()
Returns the string representation of the SymbolDict without the default factory.
_search_by_address(address)
Searches for a symbol by address.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
address
|
int
|
The address of the symbol to search for. |
required |
Returns:
Type | Description |
---|---|
list[Symbol]
|
list[Symbol]: The list of symbols that match the specified address. |
Source code in libdebug/data/symbol_list.py
_search_by_name(name)
Searches for a symbol by name.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
name
|
str
|
The name of the symbol to search for. |
required |
Returns:
Type | Description |
---|---|
list[Symbol]
|
list[Symbol]: The list of symbols that match the specified name. |
Source code in libdebug/data/symbol_list.py
filter(value)
Filters the symbols according to the specified value.
If the value is an integer, it is treated as an address. If the value is a string, it is treated as a symbol name.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
value
|
int | str
|
The address or name of the symbol to find. |
required |
Returns:
Type | Description |
---|---|
SymbolList[Symbol]
|
SymbolList[Symbol]: The symbols matching the specified value. |