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

Method caller_sites

python/function.py:3121–3129  ·  view source on GitHub ↗

``caller_sites`` returns a list of ReferenceSource objects corresponding to the addresses in functions which reference this function :return: List of ReferenceSource objects of the call sites to this function :rtype: list(ReferenceSource)

(self)

Source from the content-addressed store, hash-verified

3119
3120 @property
3121 def caller_sites(self) -> Generator['binaryview.ReferenceSource', None, None]:
3122 """
3123 ``caller_sites`` returns a list of ReferenceSource objects corresponding to the addresses
3124 in functions which reference this function
3125
3126 :return: List of ReferenceSource objects of the call sites to this function
3127 :rtype: list(ReferenceSource)
3128 """
3129 return self.view.get_code_refs(self.start)
3130
3131 @property
3132 def workflow(self):

Callers

nothing calls this directly

Calls 1

get_code_refsMethod · 0.80

Tested by

no test coverage detected