From f149dde4cceb2acdb1ebf68c9244d4bdccaad2be Mon Sep 17 00:00:00 2001 From: Mitchel Humpherys <mitchelh@codeaurora.org> Date: Fri, 4 Sep 2015 14:46:54 -0700 Subject: [PATCH] lrdp-v2: Rename symbol_lookup to symbol_at The name symbol_at gives a better idea of what the function does, and it more closely mirrors the corresponding gdbmi function. Change-Id: If2f3df505bc129a3b963ea363e4c544599626948 --- linux-ramdump-parser-v2/ramdump.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/linux-ramdump-parser-v2/ramdump.py b/linux-ramdump-parser-v2/ramdump.py index 021503b..3eb06c7 100644 --- a/linux-ramdump-parser-v2/ramdump.py +++ b/linux-ramdump-parser-v2/ramdump.py @@ -987,7 +987,7 @@ class RamDump(): except gdbmi.GdbMIException: pass - def symbol_lookup(self, addr): + def symbol_at(self, addr): try: return self.gdbmi.symbol_at(addr).symbol except gdbmi.GdbMIException: -- GitLab