Native Inspect Manual (H06.13+, J06.03+)

radix {8|10|16}
Sets the input and output number radices.
symbol-reloading {on|off}
Sets dynamic symbol table reloading multiple times in one run.
verbose {on|off}
Sets verbosity (information about progress is displayed as a command executes).
width number
Sets the number of characters Native Inspect expects in a line.
Examples
To set pretty printing on and off:
(eInspect 4,770): set print pretty off
(eInspect 4,770): print pcb
$2 = (PCB_t *) 0x0
(eInspect 4,770): c
Continuing.
Breakpoint 3, pcbDataStructs_initialize ()
at \SIERRA.$YOSE1.SYMBAT1.SCXXTST:362
362 PCB_addAttribute( pcb, PCBAttribute_createSystem( 5 ) );
(eInspect 4,770): print *pcb
$3 = {state = 0, flags = {word = 0, item = {isBad = 0, isReady = 0,
isHappy = 0, isStarved = 0, waitState = 0}}, dispatchCount = 0, pin = 0,
attributeCount = 0, attribute = {0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
0x0, 0x0}}
(eInspect 4,770): set print pretty on
(eInspect 4,770): print *pcb
$4 = {
state = 0,
flags = {
word = 0,
item = {
isBad = 0,
isReady = 0,
isBad = 0,
isReady = 0,
isHappy = 0,
isStarved = 0,
waitState = 0
}
},
dispatchCount = 0,
pin = 0,
attributeCount = 0,
attribute = {0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}
}
To set pretty printing for arrays:
(eInspect 4,770): set print array off
(eInspect 4,770): print pcb->attribute
$5 = {0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}
(eInspect 4,770): set print array on
(eInspect 4,770): print pcb->attribute
$6 = {0x0,
0x0,
0x0,
0x0,
0x0,
0x0,
0x0,
0x0,
0x0,
0x0}
set Command (environment) 113