Home | History | Annotate | Download | only in scripts

Lines Matching refs:symbol

19 The information can include symbol names, offsets, and source locations.
93 """Look up symbol information about an address.
116 """Look up symbol information for a set of addresses from the given library.
164 """Look up line and symbol information for a set of addresses.
171 A dictionary of the form {addr: [(symbol, file:line)]} where
173 or an empty list if no symbol information was found.
199 symbol = child.stdout.readline().strip()
200 if symbol == "??":
201 symbol = None
205 if symbol is None and location is None:
207 records.append((symbol, location))
243 A dictionary of the form {addr: (string symbol, offset)}.
278 current_symbol = None # The current function symbol in the disassembly.
329 def FormatSymbolWithOffset(symbol, offset):
331 return symbol
332 return "%s+%d" % (symbol, offset)