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

Method constant_ptr

python/variable.py:518–528  ·  view source on GitHub ↗

Create constant pointer valued PossibleValueSet object. :param int value: Integer value of the constant pointer :rtype: PossibleValueSet

(value: int)

Source from the content-addressed store, hash-verified

516
517 @staticmethod
518 def constant_ptr(value: int) -> 'PossibleValueSet':
519 """
520 Create constant pointer valued PossibleValueSet object.
521
522 :param int value: Integer value of the constant pointer
523 :rtype: PossibleValueSet
524 """
525 result = PossibleValueSet()
526 result._type = RegisterValueType.ConstantPointerValue
527 result._value = value
528 return result
529
530 @staticmethod
531 def stack_frame_offset(offset: int) -> 'PossibleValueSet':

Callers

nothing calls this directly

Calls 1

PossibleValueSetClass · 0.70

Tested by

no test coverage detected