Skip to main content
The 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

A FunctionContext object representing the called function.

inputs

An array of OperandInfo objects representing an argument passed to the called function.

output

An OperandInfo object representing the return value of the called function.

debug

A string containing debug logs generated during the matching process.

Example