MCPcopy Create free account
hub / github.com/Vector35/binaryninja-api / selectNone

Method selectNone

examples/triage/byte.cpp:757–772  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

755
756
757void ByteView::selectNone()
758{
759 for (auto& i : m_lines)
760 {
761 if ((m_cursorAddr >= i.address) && (m_cursorAddr < (i.address + i.length)) && i.separator)
762 {
763 m_cursorAddr = i.address + i.length;
764 break;
765 }
766 }
767 m_selectionStartAddr = m_cursorAddr;
768 if (m_selectionVisible)
769 viewport()->update();
770 repositionCaret();
771 UIContext::updateStatus();
772}
773
774
775void ByteView::selectAll()

Callers

nothing calls this directly

Calls 2

viewportFunction · 0.85
updateMethod · 0.45

Tested by

no test coverage detected