Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit d6b97d19 authored by Christopher Ferris's avatar Christopher Ferris Committed by Android Git Automerger
Browse files

am 2c8078fd: Merge "Fix regex for finding symbol data."

* commit '2c8078fd':
  Fix regex for finding symbol data.
parents af3d1408 2c8078fd
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -22,7 +22,7 @@ import sys
###############################################################################
# match "#00 pc 0003f52e  /system/lib/libdvm.so" for example
###############################################################################
trace_line = re.compile("(.*)(\#[0-9]+)  (..) ([0-9a-f]{8})  ([^\r\n \t]*)")
trace_line = re.compile("(.*)(\#[0-9]+) {1,2}(..) ([0-9a-f]{8})  ([^\r\n \t]*)")

# returns a list containing the function name and the file/lineno
def CallAddr2Line(lib, addr):