HomeSort by relevance Sort by last modified time
    Searched refs:BREAKPOINT (Results 1 - 25 of 38) sorted by null

1 2

  /external/syslinux/gnu-efi/gnu-efi-3.0/lib/
debug.c 40 BREAKPOINT();
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/Events/
BreakpointTest.java 37 * JDWP Unit test for BREAKPOINT event.
46 * This testcase is for BREAKPOINT event.
47 * <BR>It runs BreakpointDebuggee and set breakpoint to its breakpointTest
48 * method, then verifies that requested BREAKPOINT event occurs.
61 // execute the breakpoint
70 JDWPConstants.EventKind.BREAKPOINT,
72 JDWPConstants.EventKind.getName(JDWPConstants.EventKind.BREAKPOINT),
BreakpointMultipleTest.java 31 * JDWP Unit test for multiple BREAKPOINT events.
40 * This testcase is for BREAKPOINT event. It checks we can set
59 // Set breakpoint again to be sure we cleared breakpoints correctly in the runtime.
69 * This testcase is for BREAKPOINT event. It checks we can set
90 // Check we received all our BREAKPOINT events at the same time.
96 assertTrue("Breakpoint 1 is missing", request_ids.contains(breakpoint1));
97 assertTrue("Breakpoint 2 is missing", request_ids.contains(breakpoint2));
110 * Sets a breakpoint at the start of the "breakpointTest"
119 * Checks the given event is a BREAKPOINT event and adds its request
125 JDWPConstants.EventKind.BREAKPOINT,
    [all...]
BreakpointOnCatchTest.java 31 * JDWP Unit test for BREAKPOINT event on "catch (...)" line.
40 * This testcase is for BREAKPOINT event.
41 * <BR>It runs BreakpointOnCatchDebuggee and set breakpoint to its breakpointOnCatch
42 * method, then verifies that the requested BREAKPOINT event occurs on a catch statement
75 // Now we can set the BREAKPOINT on the catch location.
78 // The debuggee is suspended on the EXCEPTION event: resume it to hit the BREAKPOINT event.
81 // Wait for BREAKPOINT event.
83 debuggeeWrapper.vmMirror.receiveCertainEvent(JDWPConstants.EventKind.BREAKPOINT);
106 logWriter.println("Install breakpoint at " + location);
EventWithExceptionTest.java 68 * Tests we properly BREAKPOINT in the catch handler if we request it before the EXCEPTION
100 // Install BREAKPOINT in catch handler.
105 // Wait for BREAKPOINT.
106 ParsedEvent breakpointEvent = waitForEvent(JDWPConstants.EventKind.BREAKPOINT,
109 // Check location of BREAKPOINT event.
113 // Remove BREAKPOINT request.
114 clearEvent(JDWPConstants.EventKind.BREAKPOINT, breakpointRequestId, true);
116 // Resume debuggee suspended on BREAKPOINT event.
117 logWriter.println("Resume debuggee after BREAKPOINT event");
127 * Tests we properly BREAKPOINT in the catch handler if we request it upon the EXCEPTIO
    [all...]
CombinedEventsTest.java 39 * METHOD_ENTRY, SINGLE_STEP, BREAKPOINT, METHOD_EXIT.
63 * METHOD_ENTRY, SINGLE_STEP, BREAKPOINT. After setting requests the test starts
78 JDWPConstants.EventKind.BREAKPOINT,
106 logWriter.println("=> Set request for BREAKPOINT event in debuggee: "
117 logWriter.println("=> Breakpoint requestID = " + breakpointRequestID);
154 // SINGLE_STEP, BREAKPOINT events
156 + " METHOD_ENTRY, SINGLE_STEP, BREAKPOINT events; ignore single SINGLE_STEP event");
187 * breakpoint at the beginning of method sampleMethod() of debuggee, waits
188 * for this breakpoint. Then sets requests for expected events at the end of
190 * SINGLE_STEP, BREAKPOINT. Then resumes debuggee and starts to receiv
    [all...]
CombinedEvents003Test.java 39 * METHOD_ENTRY, SINGLE_STEP, BREAKPOINT, METHOD_EXIT.
60 * METHOD_ENTRY, SINGLE_STEP, BREAKPOINT, METHOD_EXIT
68 JDWPConstants.EventKind.BREAKPOINT,
100 logWriter.println("=> Set request for BREAKPOINT event in debuggee: "
111 logWriter.println("=> Breakpoint requestID = " + breakpointRequestID);
155 + " METHOD_ENTRY, SINGLE_STEP, BREAKPOINT, METHOD_EXIT events; ignore single SINGLE_STEP event");
296 case JDWPConstants.EventKind.BREAKPOINT:
CombinedEventsTestCase.java 211 case JDWPConstants.EventKind.BREAKPOINT:
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Include/Common/
EdkIIGlueBaseTypes.h 28 #define BREAKPOINT EFI_BREAKPOINT
  /external/syslinux/efi32/include/efi/ia32/
efibind.h 130 #define BREAKPOINT() __asm { int 3 }
132 #define BREAKPOINT() while (TRUE); // Make it hang on Bios[Dbg]32
  /external/syslinux/gnu-efi/gnu-efi-3.0/inc/ia32/
efibind.h 130 #define BREAKPOINT() __asm { int 3 }
132 #define BREAKPOINT() while (TRUE); // Make it hang on Bios[Dbg]32
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/
JDWPConstants.java 276 public static final byte BREAKPOINT = 2;
338 case BREAKPOINT:
339 return "BREAKPOINT";
ParsedEvent.java 197 * The class implements JDWP BREAKPOINT event.
208 super(suspendPolicy, packet, JDWPConstants.EventKind.BREAKPOINT);
664 case JDWPConstants.EventKind.BREAKPOINT: {
VmMirror.java 30 import org.apache.harmony.jpda.tests.framework.Breakpoint;
101 * Sets breakpoint to given location with suspend policy ALL.
104 * Location of breakpoint
112 * Sets breakpoint to given location
115 * Location of breakpoint
117 * Suspend policy for a breakpoint being created
121 Event event = Event.builder(JDWPConstants.EventKind.BREAKPOINT, suspendPolicy)
128 * Sets breakpoint that triggers only on a certain occurrence to a given
132 * @param breakpoint
134 * Suspend policy for a breakpoint being create
    [all...]
  /external/syslinux/gnu-efi/gnu-efi-3.0/inc/ia64/
efibind.h 119 #define BREAKPOINT() while (TRUE)
  /external/syslinux/efi64/include/efi/x86_64/
efibind.h 139 #define BREAKPOINT() __asm { int 3 }
141 #define BREAKPOINT() while (TRUE); // Make it hang on Bios[Dbg]32
  /external/syslinux/gnu-efi/gnu-efi-3.0/inc/x86_64/
efibind.h 139 #define BREAKPOINT() __asm { int 3 }
141 #define BREAKPOINT() while (TRUE); // Make it hang on Bios[Dbg]32
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/EventModifiers/
JDWPEventModifierTestCase.java 3 import org.apache.harmony.jpda.tests.framework.Breakpoint;
51 * Creates an {@link EventBuilder} for BREAKPOINT event and sets a
55 * @param breakpoint the breakpoint info
59 Breakpoint breakpoint) {
60 long typeID = debuggeeWrapper.vmMirror.getTypeID(breakpoint.className, typeTag);
61 long methodID = getMethodID(typeID, breakpoint.methodName);
62 byte eventKind = JDWPConstants.EventKind.BREAKPOINT;
64 .setLocationOnly(new Location(typeTag, typeID, methodID, breakpoint.index))
    [all...]
  /external/scapy/scapy/
automaton.py 347 BREAKPOINT = "BREAKPOINT"
585 class Breakpoint(AutomatonStopped):
746 elif isinstance(state, self.Breakpoint):
747 c = Message(type=_ATMT_Command.BREAKPOINT,state=state)
773 yield self.Breakpoint("breakpoint triggered on state %s" % self.state.state,
    [all...]
  /external/oj-libjdwp/make/data/jdwp/
jdwp.spec     [all...]
  /external/oj-libjdwp/src/share/back/
util.c     [all...]
  /external/annotation-tools/asmx/test/lib/
bcel-5.1.jar 
  /external/annotation-tools/asmx/
bcel.jar 
  /external/owasp/sanitizer/tools/findbugs/lib/
bcel.jar 
  /prebuilts/tools/common/m2/repository/com/google/code/findbugs/bcel/2.0.1/
bcel-2.0.1.jar 

Completed in 567 milliseconds

1 2