Searched defs:map_name (Results 1 - 3 of 3) sorted by relevance

/system/core/libbacktrace/
H A DBacktrace.cpp86 std::string map_name; local
88 map_name = frame->map.Name();
90 if (map_name[0] == '[' && map_name[map_name.size() - 1] == ']') {
91 map_name.resize(map_name.size() - 1);
92 map_name += StringPrintf(":%" PRIPTR "]", frame->map.start);
96 map_name = "<unknown>";
100 line += map_name;
[all...]
/system/core/libunwindstack/
H A DUnwinder.cpp64 frame->map_name = info->name;
99 frame->map_name = map_info->name;
114 std::string& map_name) {
118 auto pos = map_name.find_last_of('.');
124 map_name.substr(pos + 1)) != map_suffixes_to_ignore->end();
276 } else if (!frame.map_name.empty()) {
277 data += " " + frame.map_name;
113 ShouldStop(const std::vector<std::string>* map_suffixes_to_ignore, std::string& map_name) argument
/system/core/libunwindstack/include/unwindstack/
H A DUnwinder.h50 std::string map_name; member in struct:unwindstack::FrameData

Completed in 280 milliseconds