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

Method callee_addresses

python/function.py:3092–3103  ·  view source on GitHub ↗

``callee_addressses`` returns a list of start addresses for functions that this function calls. Does not point to the actual address where the call occurs, just the start of the function that contains the reference. :return: List of start address for functions that this function calls :rty

(self)

Source from the content-addressed store, hash-verified

3090
3091 @property
3092 def callee_addresses(self) -> List[int]:
3093 """
3094 ``callee_addressses`` returns a list of start addresses for functions that this function calls.
3095 Does not point to the actual address where the call occurs, just the start of the function that contains the reference.
3096
3097 :return: List of start address for functions that this function calls
3098 :rtype: list(int)
3099 """
3100 result = []
3101 for ref in self.call_sites:
3102 result.extend(self.view.get_callees(ref.address, ref.function, ref.arch))
3103 return result
3104
3105 @property
3106 def callers(self) -> List['Function']:

Callers

nothing calls this directly

Calls 1

get_calleesMethod · 0.80

Tested by

no test coverage detected