summaryrefslogtreecommitdiff
path: root/python/binaryview.py
diff options
context:
space:
mode:
authorJordan Wiens <github@psifertex.com>2019-07-24 13:44:53 -0400
committerJordan Wiens <github@psifertex.com>2019-07-24 13:44:53 -0400
commitede41e0ceb67494371030fbd5041852bf1900fdf (patch)
tree64a40a296e90ce2a9ba9b3cb20424854e900bf70 /python/binaryview.py
parent16d6fc70bfbc47ccf1b3410c3762830ad09f1fc5 (diff)
small documentation improvements
Diffstat (limited to 'python/binaryview.py')
-rw-r--r--python/binaryview.py12
1 files changed, 8 insertions, 4 deletions
diff --git a/python/binaryview.py b/python/binaryview.py
index 179d0d21..a88d1dd1 100644
--- a/python/binaryview.py
+++ b/python/binaryview.py
@@ -2739,10 +2739,14 @@ class BinaryView(object):
def get_functions_at(self, addr):
"""
- ``get_functions_at`` get a list of binaryninja.Function objects (one for each valid plat) at the given
- virtual address. Binary Ninja does not limit the number of platforms in a given file thus there may be multiple
- functions defined from different architectures at the same location. This API allows you to query all of valid
- platforms.
+
+ ``get_functions_at`` get a list of binaryninja.Function objects (one for each valid platform) that start at the
+ given virtual address. Binary Ninja does not limit the number of platforms in a given file thus there may be
+ multiple functions defined from different architectures at the same location. This API allows you to query all
+ of valid platforms.
+
+ You may also be interested in :func:`get_functions_containing` which is useful for requesting all function
+ that contain a given address
:param int addr: virtual address of the desired Function object list.
:return: a list of binaryninja.Function objects defined at the provided virtual address