Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .sdk-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v3.116.0
v3.116.5
26 changes: 26 additions & 0 deletions docs/CallEdge.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ Name | Type | Description | Notes
**CallerFunctionId** | **int64** | |
**CallerName** | Pointer to **string** | | [optional]
**CallerVaddr** | **int64** | Entry vaddr of the caller function (joined from function_t). |
**ImportedFunctionId** | Pointer to **int64** | Imported function ID for an external callee, resolved via the thunk/stub address. | [optional]
**IsExternal** | **bool** | |
**ThunkedVaddr** | Pointer to **int64** | | [optional]

Expand Down Expand Up @@ -167,6 +168,31 @@ and a boolean to check if the value has been set.
SetCallerVaddr sets CallerVaddr field to given value.


### GetImportedFunctionId

`func (o *CallEdge) GetImportedFunctionId() int64`

GetImportedFunctionId returns the ImportedFunctionId field if non-nil, zero value otherwise.

### GetImportedFunctionIdOk

`func (o *CallEdge) GetImportedFunctionIdOk() (*int64, bool)`

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

### SetImportedFunctionId

`func (o *CallEdge) SetImportedFunctionId(v int64)`

SetImportedFunctionId sets ImportedFunctionId field to given value.

### HasImportedFunctionId

`func (o *CallEdge) HasImportedFunctionId() bool`

HasImportedFunctionId returns a boolean if a field has been set.

### GetIsExternal

`func (o *CallEdge) GetIsExternal() bool`
Expand Down
2 changes: 1 addition & 1 deletion v3/client.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion v3/configuration.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

37 changes: 37 additions & 0 deletions v3/model_call_edge.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading