| 63 | uint64_t addr() const { return m_addr; } |
| 64 | BinaryNinja::DataBuffer buffer() const { return m_buffer; } |
| 65 | FunctionRef func() const { return m_func; } |
| 66 | bool operator==(const SearchResultItem& other) const { return m_addr == other.addr(); } |
| 67 | bool operator!=(const SearchResultItem& other) const { return m_addr != other.addr(); } |
| 68 | bool operator<(const SearchResultItem& other) const { return m_addr < other.addr(); } |
no outgoing calls
no test coverage detected