Lines Matching refs:line
105 #when the analysis of one line LR is finished, need record "\r\n" and the new line info
202 def line_start_check(line):
203 if line.startswith(' .text.'):
204 function_name = line.split(".text.")[1]
205 elif line.startswith(' .rodata.'):
206 function_name = line.split(".rodata.")[1]
207 elif line.startswith(' .bss.'):
208 function_name = line.split(".bss.")[1]
209 elif line.startswith(' .sram.text.'):
210 function_name = line.split(".sram.text.")[1]
211 elif line.startswith(' .data.'):
212 function_name = line.split(".data.")[1]
226 for line in f.readlines():
228 function_name = line_start_check(line)
254 if len(line.strip().split()) != 3:
256 strs = line.strip().split()
277 for index, line in enumerate(symline):
278 offset = line[:8]
281 symbol_list = line[17:].split()
297 for index, line in enumerate(logline):
298 char_list = line.split()