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

Method fastcall_calling_convention

python/platform.py:416–423  ·  view source on GitHub ↗

CallingConvention object for the fastcall calling convention

(self)

Source from the content-addressed store, hash-verified

414
415 @property
416 def fastcall_calling_convention(self):
417 """
418 CallingConvention object for the fastcall calling convention
419 """
420 result = core.BNGetPlatformFastcallCallingConvention(self.handle)
421 if result is None:
422 return None
423 return callingconvention.CallingConvention(handle=result)
424
425 @fastcall_calling_convention.setter
426 def fastcall_calling_convention(self, value):

Callers

nothing calls this directly

Calls 1

CallingConventionMethod · 0.80

Tested by

no test coverage detected