You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: python/binaryview.py
+23-1Lines changed: 23 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -2694,13 +2694,28 @@ def redo(self):
2694
2694
self._file.redo()
2695
2695
2696
2696
defnavigate(self, view, offset):
2697
+
"""
2698
+
``navigate`` navigates the UI to the specified virtual address
2699
+
2700
+
.. note:: Despite the confusing name, ``view`` in this context is not a BinaryView but rather a string describing the different UI Views. Check :py:attr:`view` while in different views to see examples such as ``Linear:ELF``, ``Graph:PE``.
Copy file name to clipboardExpand all lines: python/filemetadata.py
+15Lines changed: 15 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -369,6 +369,21 @@ def redo(self):
369
369
core.BNRedo(self.handle)
370
370
371
371
defnavigate(self, view, offset):
372
+
"""
373
+
``navigate`` navigates the UI to the specified virtual address
374
+
375
+
.. note:: Despite the confusing name, ``view`` in this context is not a BinaryView but rather a string describing the different UI Views. Check :py:attr:`view` while in different views to see examples such as ``Linear:ELF``, ``Graph:PE``.
0 commit comments