public interface IPDIBreakpointManagement
Modifier and Type | Method and Description |
---|---|
void |
deleteBreakpoint(TaskSet tasks,
int bpid)
Requests to delete a given breakpoint of specify process
|
void |
setAddressBreakpoint(TaskSet tasks,
IPDIAddressBreakpoint bpt)
Requests to set a address breakpoint of specify process
|
void |
setConditionBreakpoint(TaskSet tasks,
int bpid,
String condition)
Requests to set condition on given breakpoint of specify process
|
void |
setEnabledBreakpoint(TaskSet tasks,
int bpid,
boolean enabled)
Requests to set enable / disable a given breakpoint of specify process
|
void |
setExceptionpoint(TaskSet tasks,
IPDIExceptionpoint bpt)
Requests to set an exceptionpoint of specify process
|
void |
setFunctionBreakpoint(TaskSet tasks,
IPDIFunctionBreakpoint bpt)
Requests to set a function breakpoint of specify process
|
void |
setLineBreakpoint(TaskSet tasks,
IPDILineBreakpoint bpt)
Requests to set a line breakpoint of specify process
|
void |
setWatchpoint(TaskSet tasks,
IPDIWatchpoint bpt)
Requests to set a watchpoint of specify process
|
void setLineBreakpoint(TaskSet tasks, IPDILineBreakpoint bpt) throws PDIException
tasks
- target processbpt
- line breakpoint to be setPDIException
- on failurevoid setFunctionBreakpoint(TaskSet tasks, IPDIFunctionBreakpoint bpt) throws PDIException
tasks
- target processbpt
- function breakpoint to be setPDIException
- on failurevoid setAddressBreakpoint(TaskSet tasks, IPDIAddressBreakpoint bpt) throws PDIException
tasks
- target processbpt
- address breakpoint to be setPDIException
- on failurevoid setWatchpoint(TaskSet tasks, IPDIWatchpoint bpt) throws PDIException
tasks
- target processbpt
- watchpoint to be setPDIException
- on failurevoid setExceptionpoint(TaskSet tasks, IPDIExceptionpoint bpt) throws PDIException
tasks
- target processbpt
- an exceptionpoint to be setPDIException
- failurevoid deleteBreakpoint(TaskSet tasks, int bpid) throws PDIException
tasks
- target processbpid
- breakpoint id to be deletedPDIException
- on failurevoid setEnabledBreakpoint(TaskSet tasks, int bpid, boolean enabled) throws PDIException
tasks
- target processbpid
- breakpoint id to be enabled / disabledenabled
- true if enablePDIException
- on failurevoid setConditionBreakpoint(TaskSet tasks, int bpid, String condition) throws PDIException
tasks
- target processbpid
- breakpoint id to be set conditioncondition
- condition rulePDIException
- on failureCopyright (c) 2011 IBM Corporation and others. All Rights Reserved.