Lines Matching refs:lines
157 # Get a list of disassembled lines and their addresses.
158 lines = self._GetDisasmLines(arch, options)
159 if len(lines) == 0:
161 # Print annotated lines.
162 address = lines[0][0]
164 for i in range(len(lines)):
165 start_offset = lines[i][0] - address
166 if i == len(lines) - 1:
169 end_offset = lines[i + 1][0] - address
181 offset = lines[i][0]
190 print("%5d | %6.2f%% %x(%d): %s" % (count, percent, offset, offset, lines[i][1]))
192 print("%s %x(%d): %s" % (" " * 15, offset, offset, lines[i][1]))
721 # Unfortunately, section headers span two lines, so we have to