Home
last modified time | relevance | path

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

/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.java78 JDWPConstants.EventKind.BREAKPOINT, in testCombinedEvents_01()
204 JDWPConstants.EventKind.BREAKPOINT, in testCombinedEvents_02()
588 JDWPConstants.EventKind.BREAKPOINT, in testCombinedEvents_05()
760 JDWPConstants.EventKind.BREAKPOINT, in testCombinedEvents_06()
1022 case JDWPConstants.EventKind.BREAKPOINT: in receiveAndCheckEvents()
DBreakpointOnCatchTest.java83 debuggeeWrapper.vmMirror.receiveCertainEvent(JDWPConstants.EventKind.BREAKPOINT); in testBreakpointOnCatch()
DCombinedEvents003Test.java68 JDWPConstants.EventKind.BREAKPOINT, in testCombinedEvents003_01()
296 case JDWPConstants.EventKind.BREAKPOINT: in receiveAndCheckEvents()
DCombinedEventsTestCase.java211 case JDWPConstants.EventKind.BREAKPOINT: in checkEventLocation()
/external/syslinux/efi32/include/efi/ia32/
Defibind.h130 #define BREAKPOINT() __asm { int 3 } macro
132 #define BREAKPOINT() while (TRUE); // Make it hang on Bios[Dbg]32 macro
/external/syslinux/gnu-efi/gnu-efi-3.0/inc/ia32/
Defibind.h130 #define BREAKPOINT() __asm { int 3 } macro
132 #define BREAKPOINT() while (TRUE); // Make it hang on Bios[Dbg]32 macro
/external/syslinux/gnu-efi/gnu-efi-3.0/lib/
Ddebug.c40 BREAKPOINT(); in DbgAssert()
/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/syslinux/efi64/include/efi/x86_64/
Defibind.h139 #define BREAKPOINT() __asm { int 3 } macro
141 #define BREAKPOINT() while (TRUE); // Make it hang on Bios[Dbg]32 macro
/external/syslinux/gnu-efi/gnu-efi-3.0/inc/x86_64/
Defibind.h139 #define BREAKPOINT() __asm { int 3 } macro
141 #define BREAKPOINT() while (TRUE); // Make it hang on Bios[Dbg]32 macro
/external/syslinux/gnu-efi/gnu-efi-3.0/inc/ia64/
Defibind.h119 #define BREAKPOINT() while (TRUE) macro
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/EventModifiers/
DJDWPEventModifierTestCase.java62 byte eventKind = JDWPConstants.EventKind.BREAKPOINT; in createBreakpointEventBuilder()