Native Inspect Manual (H06.03+)

Table Of Contents
Syntax of Native Inspect Commands
Native Inspect Manual528122-003
3-31
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.
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.
u
searches physical (that is, untranslated) memory of the currently selected CPU.
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 64. The search
increment is the same as the bitsize.
After finding the first instance of the specified value, Native Inspect prompts you to
confirm continuation of the search.
finish
fn value [ u ] [ start-addr [ end-addr ]] [ type ]