Home | History | Annotate | Download | only in scripts

Lines Matching refs:symbol

19 The information can include symbol names, offsets, and source locations.
104 """Look up symbol information about an address.
127 """Look up symbol information for a set of addresses from the given library.
175 """Look up line and symbol information for a set of addresses.
182 A dictionary of the form {addr: [(symbol, file:line)]} where
184 or an empty list if no symbol information was found.
211 symbol = child.stdout.readline().strip()
212 if symbol == "??":
213 symbol = None
217 if symbol is None and location is None:
219 records.append((symbol, location))
255 A dictionary of the form {addr: (string symbol, offset)}.
290 current_symbol = None # The current function symbol in the disassembly.
341 def FormatSymbolWithOffset(symbol, offset):
343 return symbol
344 return "%s+%d" % (symbol, offset)