Home
last modified time | relevance | path

Searched refs:BREAKPOINT (Results 1 – 24 of 24) sorted by relevance

/external/apache-commons-bcel/src/main/java/org/apache/bcel/generic/
DBREAKPOINT.java25 public class BREAKPOINT extends Instruction { class
27 public BREAKPOINT() { in BREAKPOINT() method in BREAKPOINT
28 super(org.apache.bcel.Const.BREAKPOINT, (short) 1); in BREAKPOINT()
DInstruction.java455 case Const.BREAKPOINT: in readInstruction()
456 obj = new BREAKPOINT(); in readInstruction()
DVisitor.java573 void visitBREAKPOINT( BREAKPOINT obj ); in visitBREAKPOINT()
DEmptyVisitor.java923 public void visitBREAKPOINT( final BREAKPOINT obj ) { in visitBREAKPOINT()
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/Events/
DBreakpointTest.java70 JDWPConstants.EventKind.BREAKPOINT, in testSetBreakpointEvent()
72 JDWPConstants.EventKind.getName(JDWPConstants.EventKind.BREAKPOINT), in testSetBreakpointEvent()
DBreakpointMultipleTest.java125 JDWPConstants.EventKind.BREAKPOINT, in checkBreakpointEvent()
127 JDWPConstants.EventKind.getName(JDWPConstants.EventKind.BREAKPOINT), in checkBreakpointEvent()
DEventWithExceptionTest.java106 ParsedEvent breakpointEvent = waitForEvent(JDWPConstants.EventKind.BREAKPOINT, in testBreakpoint_BeforeException()
114 clearEvent(JDWPConstants.EventKind.BREAKPOINT, breakpointRequestId, true); in testBreakpoint_BeforeException()
166 ParsedEvent breakpointEvent = waitForEvent(JDWPConstants.EventKind.BREAKPOINT, in testBreakpoint_UponException()
174 clearEvent(JDWPConstants.EventKind.BREAKPOINT, breakpointRequestId, true); in testBreakpoint_UponException()
DCombinedEventsTest.java76 JDWPConstants.EventKind.BREAKPOINT, in testCombinedEvents_01()
202 JDWPConstants.EventKind.BREAKPOINT, in testCombinedEvents_02()
586 JDWPConstants.EventKind.BREAKPOINT, in testCombinedEvents_05()
758 JDWPConstants.EventKind.BREAKPOINT, in testCombinedEvents_06()
1020 case JDWPConstants.EventKind.BREAKPOINT: in receiveAndCheckEvents()
DCombinedEvents003Test.java66 JDWPConstants.EventKind.BREAKPOINT, in testCombinedEvents003_01()
294 case JDWPConstants.EventKind.BREAKPOINT: in receiveAndCheckEvents()
DBreakpointOnCatchTest.java83 debuggeeWrapper.vmMirror.receiveCertainEvent(JDWPConstants.EventKind.BREAKPOINT); in testBreakpointOnCatch()
DCombinedEventsTestCase.java211 case JDWPConstants.EventKind.BREAKPOINT: in checkEventLocation()
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/
DJDWPConstants.java276 public static final byte BREAKPOINT = 2; field in JDWPConstants.EventKind
338 case BREAKPOINT: in getName()
DParsedEvent.java208 super(suspendPolicy, packet, JDWPConstants.EventKind.BREAKPOINT); in Event_BREAKPOINT()
664 case JDWPConstants.EventKind.BREAKPOINT: { in parseEventPacket()
DVmMirror.java121 Event event = Event.builder(JDWPConstants.EventKind.BREAKPOINT, suspendPolicy) in setBreakpoint()
145 Event event = Event.builder(JDWPConstants.EventKind.BREAKPOINT, suspendPolicy) in setCountableBreakpoint()
236 if (eventParsed[0].getEventKind() == JDWPConstants.EventKind.BREAKPOINT) { in waitForBreakpoint()
278 commandPacket.setNextValueAsByte(JDWPConstants.EventKind.BREAKPOINT); in clearBreakpoint()
/external/oj-libjdwp/src/share/classes/com/sun/tools/jdi/
DEventRequestManagerImpl.java334 return JDWP.EventKind.BREAKPOINT; in eventCmd()
861 requestList(JDWP.EventKind.BREAKPOINT).clear(); in deleteAllBreakpoints()
895 return (List<BreakpointRequest>)unmodifiableRequestList(JDWP.EventKind.BREAKPOINT); in breakpointRequests()
DEventSetImpl.java712 case JDWP.EventKind.BREAKPOINT: in createEvent()
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/EventModifiers/
DJDWPEventModifierTestCase.java62 byte eventKind = JDWPConstants.EventKind.BREAKPOINT; in createBreakpointEventBuilder()
/external/scapy/scapy/
Dautomaton.py347 BREAKPOINT = "BREAKPOINT" variable in _ATMT_Command
747 c = Message(type=_ATMT_Command.BREAKPOINT,state=state)
896 elif c.type == _ATMT_Command.BREAKPOINT:
/external/apache-commons-bcel/src/main/java/org/apache/bcel/
DConstants.java1105 short BREAKPOINT = 202; field
DConst.java1510 public static final short BREAKPOINT = 202; field in Const
/external/apache-commons-bcel/src/main/java/org/apache/bcel/verifier/statics/
DPass3aVerifier.java50 import org.apache.bcel.generic.BREAKPOINT;
374 if (i instanceof BREAKPOINT) { in pass3StaticInstructionChecks()
/external/oj-libjdwp/make/data/jdwp/
Djdwp.spec2766 (Alt Breakpoint=JDWP.EventKind.BREAKPOINT
3147 (Constant BREAKPOINT =2 )
/external/oj-libjdwp/src/share/back/
Dutil.c2020 index2jdwp[EI_BREAKPOINT -EI_min] = JDWP_EVENT(BREAKPOINT); in eventIndexInit()
2065 case JDWP_EVENT(BREAKPOINT): in jdwp2EventIndex()
/external/apache-commons-bcel/src/main/java/org/apache/bcel/verifier/structurals/
DInstConstraintVisitor.java656 public void visitBREAKPOINT(final BREAKPOINT o) { in visitBREAKPOINT()