| 82 | } |
| 83 | |
| 84 | bool IsSameWatch(const AddressWatcher& l, const AddressWatcher& r) |
| 85 | { |
| 86 | if (r.Size == 'S') return false; |
| 87 | return ((l.Address == r.Address) && (l.Size == r.Size) && (l.Type == r.Type)/* && (l.WrongEndian == r.WrongEndian)*/); |
| 88 | } |
| 89 | |
| 90 | bool VerifyWatchNotAlreadyAdded(const AddressWatcher& watch) |
| 91 | { |
no outgoing calls
no test coverage detected