Header menu logo B2R2

CalleeKind Type

What kind of callee is this?

Union cases

Union case Description

IndirectCallees Set<Addr>

Full Usage: IndirectCallees Set<Addr>

Parameters:

Callee is a set of indirect call targets. This means potential callees have been analyzed already.

Item : Set<Addr>

NullCallee

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.

RegularCallee Addr

Full Usage: RegularCallee Addr

Parameters:

Callee is a regular function.

Item : Addr

SyscallCallee isExit

Full Usage: SyscallCallee isExit

Parameters:
    isExit : bool

Callee is a syscall of the given number.

isExit : bool

UnresolvedIndirectCallees

Full Usage: UnresolvedIndirectCallees

Callee (call target) is unresolved yet. This eventually will become IndirectCallees after indirect call analyses.

Instance members

Instance member Description

this.IsIndirectCallees

Full Usage: this.IsIndirectCallees

Returns: bool
Returns: bool

this.IsNullCallee

Full Usage: this.IsNullCallee

Returns: bool
Returns: bool

this.IsRegularCallee

Full Usage: this.IsRegularCallee

Returns: bool
Returns: bool

this.IsSyscallCallee

Full Usage: this.IsSyscallCallee

Returns: bool
Returns: bool

this.IsUnresolvedIndirectCallees

Full Usage: this.IsUnresolvedIndirectCallees

Returns: bool
Returns: bool

Type something to start searching.