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

Examples
To set code breakpoints:
(eInspect 1,325): b 216
Breakpoint 1 at 0x70001670:2: file \SIERRA.$YOSE1.SYMBAT1.SCXXTST, line 216.
(eInspect 1,325): b test_complexTypes
Breakpoint 2 at 0x70003700:0: file \SIERRA.$YOSE1.SYMBAT1.SCXXTST, line 420.
To set a code breakpoint in a COBOL nested program unit:
(eInspect 4,668): b main.main-level2
Breakpoint 1 at 0x70002280:2: file \SIERRA.$DIVA.CBDEMO, line 41.
To set a breakpoint on a qualified paragraph in a COBOL program:
(eInspect 4,751): b first-para of last-section
Breakpoint 1 at 0x70004500:2: file \SIERRA.$DIVA.CBDEMO, line 41.
(eInspect 2,640):b Para1
Breakpoint 2 at 0x70003be0:0: file \SIERRA.$DIVA.CBEX.CBEXAM1, line 75.
(eInspect 2,640): b Para2 OF Sec2
Breakpoint 3 at 0x70004440:0: file \SIERRA.$DIVA.CBEX.CBEXAM1, line 97.
(eInspect 2,640): b Sec3.Para2
Breakpoint 4 at 0x70004a20:0: file \SIERRA.$DIVA.CBEX.CBEXAM1, line 109.
To list breakpoints:
(eInspect 1,325): info break
Num Type Disp Enb Address What
1 breakpoint keep y 0x70001672 in main
at \SIERRA.$YOSE1.SYMBAT1.SCXXTST:216
2 breakpoint keep y 0x70003700 in test_complexTypes
at \SIERRA.$YOSE1.SYMBAT1.SCXXTST:420
For COBOL programs, the info breakpoints command displays the paragraph and
section names along with the module and file information, if the breakpoint is placed on the
paragraph or section.
(eInspect 2,640):info break
Num Type Disp Enb Glb Address What
2 breakpoint keep y n 0x70003be0 at PARA1 in MAIN-PROGRAM
at \SIERRA.$DIVA.CBEX.CBEXAM1:75
3 breakpoint keep y n 0x70004440 at PARA2 OF SEC2 in MAIN-PROGRAM
at \SIERRA.$DIVA.CBEX.CBEXAM1:97
4 breakpoint keep y n 0x70004a20 at PARA2 OF SEC3 in MAIN-PROGRAM
at \SIERRA.$DIVA.CBEX.CBEXAM1:109
To define and list conditional breakpoint:
(eInspect 1,329): b 352
Breakpoint 1 at 0x70002540:0: file \SIERRA.$YOSE1.SYMBAT1.SCXXTST, line 352.
(eInspect 1,329): condition 1 pcb->pin == 2
(eInspect 1,329): info break
Num Type Disp Enb Address What
1 breakpoint keep y 0x70002540 in pcbDataStructs_initialize
at \SIERRA.$YOSE1.SYMBAT1.SCXXTST:352
stop only if pcb->pin == 2
To set a breakpoint at a code address:
(eInspect 3,663):b *0x70002c40:2
Breakpoint 3 at 0x70002c40:2: file \SIERRA.$YOSE1.SYMBAT1.SCXXTST, line 372.
(eInspect 3,663):c
Continuing.
Breakpoint 3, 0x70002c40:2 in pcbDataStructs_initialize ()
at \SIERRA.$YOSE1.SYMBAT1.SCXXTST:372
372 PCB_addAttribute( pcb, PCBAttribute_createNonstop( PCBList.entry[11] ) );
To define and list a MAB:
(eInspect 0,294): mab globStr.f2 -c
Memory access breakpoint 2 (mab)
(eInspect 0,294): info break
68 Native Inspect Command Syntax