summaryrefslogtreecommitdiff
path: root/simpleperf/dso.cpp
diff options
context:
space:
mode:
authorYabin Cui <yabinc@google.com>2021-08-19 10:51:00 -0700
committerYabin Cui <yabinc@google.com>2021-08-19 12:39:05 -0700
commitfef951409c62edae2eba555d382348c93b433721 (patch)
treea39c26aebab4ccdcdb59d64d1a5762301aeedd26 /simpleperf/dso.cpp
parent02af000e94f99f9c5fb46794b7268878cbc77fbd (diff)
downloadextras-fef951409c62edae2eba555d382348c93b433721.tar.gz
simpleperf: use proguard mapping file for compiled java symbols.
Bug: 195892224 Test: run simpleperf_unit_test Change-Id: Ia74654d5703eb23dc4ae6e6faeb1cbc53615636e
Diffstat (limited to 'simpleperf/dso.cpp')
-rw-r--r--simpleperf/dso.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/simpleperf/dso.cpp b/simpleperf/dso.cpp
index db70a879..815e8cb0 100644
--- a/simpleperf/dso.cpp
+++ b/simpleperf/dso.cpp
@@ -229,7 +229,7 @@ void Symbol::SetDemangledName(std::string_view name) const {
}
}
-std::string_view Symbol::FunctionNameForJITSymbol() const {
+std::string_view Symbol::FunctionName() const {
// Name with signature is like "void ctep.v(cteo, ctgc, ctbn)".
std::string_view name = DemangledName();
auto brace_pos = name.find('(');