Native Inspect Manual (H06.07+)

Syntax of Native Inspect Commands
Native Inspect Manual528122-006
4-33
finish command
finish command
Executes the current process until execution either returns from the currently selected
frame (by default, the current frame) or encounters a debugging event. The finish
command prints the return value, if there is one. Use the frame command, select-frame
command to select the current frame.
The finish command operates relative to the currently selected frame, which might
differ from the current execution frame.
After you enter a finish command, you can repeat it by pressing the Enter key at the
next Native Inspect prompt. The effect is the same as if you had entered another finish
command. The ability to repeat continues until you enter any other Native Inspect
command.
Related Commands: next command, nexti command, step command, stepi command
fn command
Searches for a specified value (finds a number) in the virtual address space of the
current process. The fn command is Debug-compatible.
value
is the value you want to find. The fn command does not infer the bit size of value
based on its magnitude.
start-addr
is the address where the search is to begin.
end-addr
is the address where the search is to end.
type
is the bit size of value (8, 16, 32, or 64 bits). The default value is 32 bits. The
search increment is the same as the bit size.
After finding the first instance of the specified value, Native Inspect prompts you to
confirm continuation of the search.
finish
fn value [ start-addr [ end-addr ]] [ type ]