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

Method default_calling_convention

python/platform.py:364–375  ·  view source on GitHub ↗

Default calling convention. :getter: returns a CallingConvention object for the default calling convention. :setter: sets the default calling convention :type: CallingConvention

(self)

Source from the content-addressed store, hash-verified

362
363 @property
364 def default_calling_convention(self):
365 """
366 Default calling convention.
367
368 :getter: returns a CallingConvention object for the default calling convention.
369 :setter: sets the default calling convention
370 :type: CallingConvention
371 """
372 result = core.BNGetPlatformDefaultCallingConvention(self.handle)
373 if result is None:
374 return None
375 return callingconvention.CallingConvention(handle=result)
376
377 @default_calling_convention.setter
378 def default_calling_convention(self, value):

Callers

nothing calls this directly

Calls 1

CallingConventionMethod · 0.80

Tested by

no test coverage detected