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

Method get_data_hits

python/basedetection.py:316–326  ·  view source on GitHub ↗

``get_data_hits`` returns the number of times a pointer pointed to a data variable at the specified base address :param int base_address: base address to get data hits for :return: number of data hits for the specified base address :rtype: int

(self, base_address: int)

Source from the content-addressed store, hash-verified

314 return self._get_data_hits_by_type(base_address, BaseAddressDetectionPOIType.POIFunction)
315
316 def get_data_hits(self, base_address: int) -> int:
317 """
318 ``get_data_hits`` returns the number of times a pointer pointed to a data variable at the
319 specified base address
320
321 :param int base_address: base address to get data hits for
322 :return: number of data hits for the specified base address
323 :rtype: int
324 """
325
326 return self._get_data_hits_by_type(base_address, BaseAddressDetectionPOIType.POIDataVariable)

Callers 1

mainFunction · 0.95

Calls 1

Tested by

no test coverage detected