CalleeKind Type
What kind of callee is this?
Union cases
| Union case |
Description
|
Full Usage:
NullCallee
|
There can be "call 0" to call an external function. This pattern is typically observed by object files, but sometimes we do see this pattern in regular binaries, e.g., GNU libc. |
|
Callee is a regular function.
|
Full Usage:
SyscallCallee isExit
Parameters:
bool
|
Callee is a syscall of the given number.
|
Full Usage:
UnresolvedIndirectCallees
|
Callee (call target) is unresolved yet. This eventually will become IndirectCallees after indirect call analyses. |
Instance members
| Instance member |
Description
|
Full Usage:
this.IsIndirectCallees
Returns: bool
|
|
Full Usage:
this.IsNullCallee
Returns: bool
|
|
Full Usage:
this.IsRegularCallee
Returns: bool
|
|
Full Usage:
this.IsSyscallCallee
Returns: bool
|
|
Full Usage:
this.IsUnresolvedIndirectCallees
Returns: bool
|
|
B2R2