| 4949 | |
| 4950 | |
| 4951 | Ref<Segment> BinaryView::GetSegmentAt(uint64_t addr) |
| 4952 | { |
| 4953 | BNSegment* segment = BNGetSegmentAt(m_object, addr); |
| 4954 | if (!segment) |
| 4955 | return nullptr; |
| 4956 | |
| 4957 | return new Segment(segment); |
| 4958 | } |
| 4959 | |
| 4960 | |
| 4961 | bool BinaryView::GetAddressForDataOffset(uint64_t offset, uint64_t& addr) |
no outgoing calls
no test coverage detected