Lines Matching refs:string
39 def find_string(excinfo_file, string): argument
43 if string in lines:
58 def parse_string_line(excinfo_file, string): argument
59 line = find_string(excinfo_file, string)
61 print("%s is not in %s\n" %(string, excinfo_file))
67 def parse_kernel_pc_klr(excinfo_file, ohos_image_file, string, addr2line_cmd, objdump_cmd): argument
76 if start and string in lines:
77 lines = lines[lines.find(string):]
85 print("<%s>%s<%s>\n") % (string, ret[0], strlist[2])
115 def parse_user_pc_ulr(excinfo_file, rootfs_dir, string, addr2line_cmd, objdump_cmd): argument
124 if start and string in lines:
125 lines = lines[lines.find(string):]
128 print('%s is error'%string)
136 print("<%s>%s<%s><%s>\n" % (string, ret[0], strlist[6], strlist[4]))