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

Method stack_frame_offset

python/variable.py:531–541  ·  view source on GitHub ↗

Create a PossibleValueSet object for a stack frame offset. :param int offset: Integer value of the offset :rtype: PossibleValueSet

(offset: int)

Source from the content-addressed store, hash-verified

529
530 @staticmethod
531 def stack_frame_offset(offset: int) -> 'PossibleValueSet':
532 """
533 Create a PossibleValueSet object for a stack frame offset.
534
535 :param int offset: Integer value of the offset
536 :rtype: PossibleValueSet
537 """
538 result = PossibleValueSet()
539 result._type = RegisterValueType.StackFrameOffset
540 result._offset = offset
541 return result
542
543 @staticmethod
544 def signed_range_value(ranges: List[ValueRange]) -> 'PossibleValueSet':

Callers

nothing calls this directly

Calls 1

PossibleValueSetClass · 0.70

Tested by

no test coverage detected