Home | History | Annotate | Download | only in tools

Lines Matching full:groups

163 # groups[0]: log tag
164 # groups[1]: stack level
165 # groups[2]: "pc"
166 # groups[3]: code address
167 # groups[4]: library name
169 def SymbolTranslation(groups):
170 lib_name = groups[4]
171 code_addr = groups[3]
179 print groups[0] + groups[1] + " " + caller + "<-" + \
182 print groups[0] + groups[1] + " " + ' '.join(func_line_pair[:]) + " "
211 groups = match.groups()
213 SymbolTranslation(groups)