Lines Matching refs:r
37 process_info_line = re.compile(r"(pid: [0-9]+, tid: [0-9]+.*)")
38 revision_line = re.compile(r"(Revision: '(.*)')")
39 signal_line = re.compile(r"(signal [0-9]+ \(.*\).*)")
40 abort_message_line = re.compile(r"(Abort message: '.*')")
41 thread_line = re.compile(r"(.*)(--- ){15}---")
49 zipinfo_central_directory_line = re.compile(r"Central\s+directory\s+entry")
51 r"^\s*(\S+)$\s*offset of local header from start of archive:\s*(\d+)"
52 r".*^\s*compressed size:\s+(\d+)", re.M | re.S)
53 unreachable_line = re.compile(r"((\d+ bytes in \d+ unreachable allocations)|"
54 r"(\d+ bytes unreachable at [0-9a-f]+)|"
55 r"(referencing \d+ unreachable bytes in \d+ allocation(s)?)|"
56 r"(and \d+ similar unreachable bytes in \d+ allocation(s)?))")
69 readelf_output = re.compile(r"Class:\s*ELF(?P<bitness>32|64).*"
70 r"Build ID:\s*(?P<build_id>[0-9a-f]+)",
94 r".*" # Random start stuff.
95 r"\#(?P<frame>[0-9]+)" # Frame number.
96 r"[ \t]+..[ \t]+" # (space)pc(space).
97 r"(?P<offset>[0-9a-f]" + self.width + ")[ \t]+" # Offset (hex number given without
99 r"(?P<dso>\[[^\]]+\]|[^\r\n \t]*)" # Library name.
100 …r"( \(offset (?P<so_offset>0x[0-9a-fA-F]+)\))?" # Offset into the file to find the start of …
101 r"(?P<symbolpresent> \((?P<symbol>.*?)\))?" # Is the symbol there? (non-greedy)
102 r"( \(BuildId: (?P<build_id>.*)\))?" # Optional build-id of the ELF file.
103 … r"[ \t]*$") # End of line (to expand non-greedy match).
109 r".*" # Random start stuff.
110 r"\#(?P<frame>[0-9]+)" # Frame number.
111 r"[ \t]+0x[0-9a-f]+[ \t]+" # PC, not interesting to us.
112 r"\(" # Opening paren.
113 r"(?P<dso>[^+]+)" # Library name.
114 r"\+" # '+'
115 r"0x(?P<offset>[0-9a-f]+)" # Offset (hex number given with
117 r"\)") # Closing paren.
124 …self.value_line = re.compile(r"(.*)([0-9a-f]" + self.width + r")[ \t]+([0-9a-f]" + self.width + r"…
132 self.code_line = re.compile(r"(.*)[ \t]*[a-f0-9]" + self.width +
133 r"[ \t]*[a-f0-9]" + self.width +
134 r"[ \t]*[a-f0-9]" + self.width +
135 r"[ \t]*[a-f0-9]" + self.width +
136 r"[ \t]*[a-f0-9]" + self.width +
137 r"[ \t]*[ \r\n]") # pylint: disable-msg=C6310
138 …self.mte_sync_line = re.compile(r".*signal 11 \(SIGSEGV\), code 9 \(SEGV_MTESERR\), fault addr 0x(…
139 self.mte_stack_record_line = re.compile(r".*stack_record fp:0x(?P<fp>[0-9a-f]+) "
140 r"tag:0x(?P<tag>[0-9a-f]+) "
141 r"pc:(?P<object>[^+]+)\+0x(?P<offset>[0-9a-f]+)"
142 r"(?: \(BuildId: (?P<buildid>[A-Za-z0-9]+)\))?")