Create constant pointer valued PossibleValueSet object. :param int value: Integer value of the constant pointer :rtype: PossibleValueSet
(value: int)
| 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': |
nothing calls this directly
no test coverage detected