get_callees
Retrieve all functions called by a specific function in IDA Pro using its address. Simplify reverse engineering by identifying callee functions efficiently.
Instructions
Get all the functions called (callees) by the function at function_address
Input Schema
Name | Required | Description | Default |
---|---|---|---|
function_address | Yes | Address of the function to get callee functions |
Input Schema (JSON Schema)
{
"properties": {
"function_address": {
"description": "Address of the function to get callee functions",
"title": "Function Address",
"type": "string"
}
},
"required": [
"function_address"
],
"title": "get_calleesArguments",
"type": "object"
}