Skip to main content
The SearchCodeResult object represents the result of searching for a code pattern in the binary. It is returned by the ProjectHandle:search_code method and provides information about the matched code region and its instructions.

Fields

Reference

function_address

The address of the function that contains the matched code region.

start_address

The start address of the matched code region.

end_address

The end address of the matched code region.

insns

A table of Instruction objects representing the instructions in the matched code region.

Example