CalleeAtTable object represents the callee resolved at a specific call site.
It is returned by ProjectHandle:callee_at and provides detailed information about the called function and the dataflow at that call site, including function inputs (arguments passed to the function) and output (the function return value).
Fields
Reference
name
The name of the callee function being invoked.callee_address
The address of the callee function.callee
AFunctionContext object representing the called function.
inputs
An array ofOperandInfo objects representing an argument passed to the called function.
output
AnOperandInfo object representing the return value of the called function.