Show whether the debugger is set to print or not print the value of a pointer as an address.
show print address
None.
This command shows whether the debugger is set to print or not print the value of a pointer as an address.
This command shows the current display setting for variables.
The debugger shows the value of a pointer as an address by default.
This information may include the location of stack traces, breakpoints, structure and pointer values.
(idb) set print address on (idb) show print address Printing of address is on. (idb) p &x $1 = (int *) 0xbfffe320 (idb) set print address off (idb) show print address Printing of address is off. (idb) p &x $2 = (int*)
Copyright © 2001-2011, Intel Corporation. All rights reserved.