| 710 | } |
| 711 | |
| 712 | bool SymbolMapper::IsIndirectFixedStringRef(uint8_t const * ref, char const * str) const |
| 713 | { |
| 714 | if (IsValidModulePtr(ref)) { |
| 715 | auto fsx = (FixedString const * const *)ref; |
| 716 | if (*fsx && IsValidModulePtr((uint8_t*)*fsx)) { |
| 717 | if (**fsx && (*fsx)->IsValid() && strcmp((*fsx)->GetString(), str) == 0) { |
| 718 | return true; |
| 719 | } |
| 720 | } |
| 721 | } |
| 722 | |
| 723 | return false; |
| 724 | } |
| 725 | |
| 726 | bool SymbolMapper::EvaluateSymbolCondition(SymbolMappings::Condition const & cond, uint8_t const * match) |
| 727 | { |