Lines Matching refs:re
12 import re
17 CALL_STACK_RE = re.compile('Call stack:')
18 TEE_LOAD_ADDR_RE = re.compile(r'TEE load address @ (?P<load_addr>0x[0-9a-f]+)')
21 STACK_ADDR_RE = re.compile(
23 ABORT_ADDR_RE = re.compile(r'-abort at address (?P<addr>0x[0-9a-f]+)')
24 TA_PANIC_RE = re.compile(r'TA panicked with code (?P<code>0x[0-9a-f]+)')
25 REGION_RE = re.compile(r'region +[0-9]+: va (?P<addr>0x[0-9a-f]+) '
28 ELF_LIST_RE = re.compile(r'\[(?P<idx>[0-9]+)\] (?P<uuid>[0-9a-f\-]+)'
30 FUNC_GRAPH_RE = re.compile(r'Function graph')
31 GRAPH_ADDR_RE = re.compile(r'(?P<addr>0x[0-9a-f]+)')
32 GRAPH_RE = re.compile(r'}')
334 match = re.search(ABORT_ADDR_RE, line)
419 return re.sub(re.escape(self._strip_path) + '/*', '', path)
424 match = re.search(STACK_ADDR_RE, line)
447 match = re.search(GRAPH_ADDR_RE, line)
448 match_re = re.search(GRAPH_RE, line)
455 res_arr = re.split(' ', res)
467 match = re.search(REGION_RE, line)
476 match = re.search(ELF_LIST_RE, line)
484 match = re.search(TA_PANIC_RE, line)
491 match = re.search(TEE_LOAD_ADDR_RE, line)
494 match = re.search(CALL_STACK_RE, line)
527 match = re.search(FUNC_GRAPH_RE, line)
530 match = re.search(ABORT_ADDR_RE, line)