| 9 | using namespace BinaryNinja; |
| 10 | |
| 11 | std::pair<std::string, Ref<Type>> CacheSymbol::DemangledName(BinaryView &view) const |
| 12 | { |
| 13 | QualifiedName qname; |
| 14 | Ref<Type> outType; |
| 15 | std::string shortName = name; |
| 16 | if (DemangleGeneric(view.GetDefaultArchitecture(), name, outType, qname, &view, true)) |
| 17 | shortName = qname.GetString(); |
| 18 | return { shortName, outType }; |
| 19 | } |
| 20 | |
| 21 | std::pair<Ref<Symbol>, Ref<Type>> CacheSymbol::GetBNSymbolAndType(BinaryView& view) const |
| 22 | { |
nothing calls this directly
no test coverage detected