We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c1068de commit 30046d8Copy full SHA for 30046d8
qiling/debugger/qdb/utils.py
@@ -49,6 +49,11 @@ def print_info(msg):
49
50
print(color_coated)
51
52
+"""
53
+
54
+ class Marker provide the ability for marking an address as a more easier rememberable alias
55
56
57
58
def setup_address_marker():
59
@@ -57,10 +62,18 @@ def __init__(self):
62
self._mark_list = {}
63
64
def get_symbol(self, sym):
65
+ """
66
+ get the mapped address to a symbol if it's in the mark_list
67
68
60
69
return self._mark_list.get(sym, None)
61
70
71
@property
72
def mark_list(self):
73
74
+ get a list about what we marked
75
76
77
return self._mark_list.items()
78
79
def gen_sym_name(self):
0 commit comments