| 684 | } |
| 685 | |
| 686 | bool SymbolMapper::IsConstStringRef(uint8_t const * ref, char const * str) const |
| 687 | { |
| 688 | return |
| 689 | IsValidModulePtr(ref) |
| 690 | && strcmp((char const *)ref, str) == 0; |
| 691 | } |
| 692 | |
| 693 | bool SymbolMapper::IsConstWStringRef(uint8_t const * ref, wchar_t const * str) const |
| 694 | { |
nothing calls this directly
no outgoing calls
no test coverage detected