| 61 | const BinaryNinja::DisassemblyTextLine& line, QWidget* owner); |
| 62 | SearchResultItem(const SearchResultItem& other); |
| 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(); } |
no outgoing calls
no test coverage detected