Skip to content

Latest commit

 

History

History
77 lines (42 loc) · 2.32 KB

File metadata and controls

77 lines (42 loc) · 2.32 KB

Symbols

Properties

Name Type Description Notes
BaseAddress int32 The starting address of the execution
FunctionBoundaries Pointer to []FunctionBoundary List of user defined function boundaries [optional] [default to {}]

Methods

NewSymbols

func NewSymbols(baseAddress int32, ) *Symbols

NewSymbols instantiates a new Symbols object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

NewSymbolsWithDefaults

func NewSymbolsWithDefaults() *Symbols

NewSymbolsWithDefaults instantiates a new Symbols object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

GetBaseAddress

func (o *Symbols) GetBaseAddress() int32

GetBaseAddress returns the BaseAddress field if non-nil, zero value otherwise.

GetBaseAddressOk

func (o *Symbols) GetBaseAddressOk() (*int32, bool)

GetBaseAddressOk returns a tuple with the BaseAddress field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetBaseAddress

func (o *Symbols) SetBaseAddress(v int32)

SetBaseAddress sets BaseAddress field to given value.

GetFunctionBoundaries

func (o *Symbols) GetFunctionBoundaries() []FunctionBoundary

GetFunctionBoundaries returns the FunctionBoundaries field if non-nil, zero value otherwise.

GetFunctionBoundariesOk

func (o *Symbols) GetFunctionBoundariesOk() (*[]FunctionBoundary, bool)

GetFunctionBoundariesOk returns a tuple with the FunctionBoundaries field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetFunctionBoundaries

func (o *Symbols) SetFunctionBoundaries(v []FunctionBoundary)

SetFunctionBoundaries sets FunctionBoundaries field to given value.

HasFunctionBoundaries

func (o *Symbols) HasFunctionBoundaries() bool

HasFunctionBoundaries returns a boolean if a field has been set.

[Back to Model list] [Back to API list] [Back to README]