| 698 | } |
| 699 | |
| 700 | bool SymbolMapper::IsFixedStringRef(uint8_t const * ref, char const * str) const |
| 701 | { |
| 702 | if (IsValidModulePtr(ref)) { |
| 703 | auto fsx = (FixedString const *)ref; |
| 704 | if (*fsx && fsx->IsValid() && strcmp(fsx->GetString(), str) == 0) { |
| 705 | return true; |
| 706 | } |
| 707 | } |
| 708 | |
| 709 | return false; |
| 710 | } |
| 711 | |
| 712 | bool SymbolMapper::IsIndirectFixedStringRef(uint8_t const * ref, char const * str) const |
| 713 | { |