/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/ |
D | ParsedEvent.java | 35 private byte suspendPolicy; field in ParsedEvent 44 protected ParsedEvent(byte suspendPolicy, Packet packet, byte eventKind) { in ParsedEvent() argument 45 this.suspendPolicy = suspendPolicy; in ParsedEvent() 65 return suspendPolicy; in getSuspendPolicy() 88 protected EventThread(byte suspendPolicy, Packet packet, byte eventKind) { in EventThread() argument 89 super(suspendPolicy, packet, eventKind); in EventThread() 114 protected EventThreadLocation(byte suspendPolicy, Packet packet, in EventThreadLocation() argument 116 super(suspendPolicy, packet, eventKind); in EventThreadLocation() 142 protected EventThreadMonitor(byte suspendPolicy, Packet packet, in EventThreadMonitor() argument 144 super(suspendPolicy, packet, eventKind); in EventThreadMonitor() [all …]
|
D | Event.java | 36 public static EventBuilder builder(byte eventKind, byte suspendPolicy) { in builder() argument 37 return new EventBuilder(eventKind, suspendPolicy); in builder() 41 public final byte suspendPolicy; field in Event 49 Event(byte eventKind, byte suspendPolicy, List<EventMod> mods) { in Event() argument 51 this.suspendPolicy = suspendPolicy; in Event()
|
D | EventBuilder.java | 29 private final byte suspendPolicy; field in EventBuilder 32 EventBuilder(byte eventKind, byte suspendPolicy) { in EventBuilder() argument 34 this.suspendPolicy = suspendPolicy; in EventBuilder() 197 return new Event(eventKind, suspendPolicy, modifiers); in build()
|
D | VmMirror.java | 120 public ReplyPacket setBreakpoint(Location location, byte suspendPolicy) { in setBreakpoint() argument 121 Event event = Event.builder(JDWPConstants.EventKind.BREAKPOINT, suspendPolicy) in setBreakpoint() 141 Breakpoint breakpoint, byte suspendPolicy, int count) { in setCountableBreakpoint() argument 145 Event event = Event.builder(JDWPConstants.EventKind.BREAKPOINT, suspendPolicy) in setCountableBreakpoint() 175 public int setBreakpointAtMethodBegin(long classID, String methodName, byte suspendPolicy) { in setBreakpointAtMethodBegin() argument 203 ReplyPacket reply = setBreakpoint(breakpointLocation, suspendPolicy); in setBreakpointAtMethodBegin() 944 byte suspendPolicy = JDWPConstants.SuspendPolicy.ALL; in setClassPreparedForSourceNameMatch() 945 Event event = Event.builder(eventKind, suspendPolicy) in setClassPreparedForSourceNameMatch() 1150 commandPacket.setNextValueAsByte(event.suspendPolicy); in setEvent() 1353 byte suspendPolicy = JDWPConstants.SuspendPolicy.ALL; in setException() [all …]
|
/external/oj-libjdwp/src/share/back/ |
D | eventHelper.c | 48 jbyte suspendPolicy; /* NOTE: Must be the first field */ member 59 jbyte suspendPolicy; /* NOTE: Must be the first field */ member 85 jbyte suspendPolicy; /* NOTE: Must be the first field */ member 94 jbyte suspendPolicy; /* NOTE: Must be the first field */ member 505 if (recc->suspendPolicy != JDWP_SUSPEND_POLICY(NONE)) { in handleReportEventCompositeCommand() 527 suspendWithInvokeEnabled(recc->suspendPolicy, thread); in handleReportEventCompositeCommand() 534 (void)outStream_writeByte(&out, recc->suspendPolicy); in handleReportEventCompositeCommand() 571 if (command->suspendPolicy == JDWP_SUSPEND_POLICY(ALL)) { in handleReportVMInitCommand() 573 } else if (command->suspendPolicy == JDWP_SUSPEND_POLICY(EVENT_THREAD)) { in handleReportVMInitCommand() 580 (void)outStream_writeByte(&out, command->suspendPolicy); in handleReportVMInitCommand() [all …]
|
D | standardHandlers.c | 70 if (node->suspendPolicy == JDWP_SUSPEND_POLICY(EVENT_THREAD)) { in handleClassPrepare() 71 node->suspendPolicy = JDWP_SUSPEND_POLICY(ALL); in handleClassPrepare() 75 node->suspendPolicy, eventBag); in handleClassPrepare() 114 node->suspendPolicy, in handleFrameEvent() 130 eventHelper_recordEvent(evinfo, node->handlerID, node->suspendPolicy, in genericHandler()
|
D | eventHelper.h | 37 jbyte suspendPolicy, struct bag *eventBag); 39 void eventHelper_recordFrameEvent(jint id, jbyte suspendPolicy, EventIndex ei, 48 void eventHelper_reportVMInit(JNIEnv *env, jbyte sessionID, jthread thread, jbyte suspendPolicy);
|
D | eventHandler.h | 37 jbyte suspendPolicy; member 50 jbyte suspendPolicy);
|
D | EventRequestImpl.c | 237 jbyte suspendPolicy; in setCommand() local 246 suspendPolicy = inStream_readByte(in); in setCommand() 270 node = eventHandler_alloc(filterCount, ei, suspendPolicy); in setCommand()
|
/external/oj-libjdwp/src/share/classes/com/sun/tools/jdi/ |
D | EventSetImpl.java | 53 private byte suspendPolicy; field in EventSetImpl 57 String string = "event set, policy:" + suspendPolicy + in toString() 580 suspendPolicy = JDWP.SuspendPolicy.NONE; in EventSetImpl() 609 suspendPolicy = compEvt.suspendPolicy; in build() 611 switch(suspendPolicy) { in build() 644 suspendPolicy == JDWP.SuspendPolicy.EVENT_THREAD) { in build() 667 if (suspendPolicy == JDWP.SuspendPolicy.ALL) { in build() 669 } else if (suspendPolicy == JDWP.SuspendPolicy.EVENT_THREAD) { in build() 677 suspendPolicy = JDWP.SuspendPolicy.NONE; in build() 784 public int suspendPolicy() { in suspendPolicy() method in EventSetImpl [all …]
|
D | EventRequestManagerImpl.java | 98 byte suspendPolicy = JDWP.SuspendPolicy.ALL; field in EventRequestManagerImpl.EventRequestImpl 186 suspendPolicy = JDItoJDWPSuspendPolicy(policy); in setSuspendPolicy() 189 public int suspendPolicy() { in suspendPolicy() method in EventRequestManagerImpl.EventRequestImpl 190 return JDWPtoJDISuspendPolicy(suspendPolicy); in suspendPolicy() 202 suspendPolicy, mods).requestID; in set()
|
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/Events/ |
D | VMDeath002Test.java | 76 byte suspendPolicy = JDWPConstants.SuspendPolicy.ALL; in testVMDeathRequest() 78 + suspendPolicy + "/" in testVMDeathRequest() 79 + JDWPConstants.SuspendPolicy.getName(suspendPolicy)); in testVMDeathRequest() 133 if (eventSuspendPolicy != suspendPolicy) { in testVMDeathRequest()
|
D | ClassPrepare002Test.java | 62 final byte suspendPolicy = JDWPConstants.SuspendPolicy.EVENT_THREAD; in testClassPrepareCausedByDebugger() 63 Event event = Event.builder(eventKind, suspendPolicy) in testClassPrepareCausedByDebugger()
|
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/MultiSession/ |
D | VMDeathTest.java | 65 byte suspendPolicy = JDWPConstants.SuspendPolicy.ALL; in testVMDeathRequest() 67 + suspendPolicy in testVMDeathRequest() 69 + JDWPConstants.SuspendPolicy.getName(suspendPolicy)); in testVMDeathRequest()
|
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ClassType/ |
D | InvokeMethodTest.java | 115 byte suspendPolicy = event.getNextValueAsByte(); in testInvokeMethod001() 117 … logWriter.println(" EVENT_THREAD event: suspendPolicy=" + suspendPolicy + " events=" + events); in testInvokeMethod001() 269 byte suspendPolicy = event.getNextValueAsByte(); in testInvokeMethod002() 271 logWriter.println(" EVENT_THREAD event: suspendPolicy=" + suspendPolicy in testInvokeMethod002() 407 byte suspendPolicy = event.getNextValueAsByte(); in testInvokeMethod003() 409 logWriter.println(" EVENT_THREAD event: suspendPolicy=" + suspendPolicy in testInvokeMethod003()
|
D | NewInstanceTest.java | 113 byte suspendPolicy = event.getNextValueAsByte(); in testNewInstance001() 115 logWriter.println(" EVENT_THREAD event: suspendPolicy=" + suspendPolicy in testNewInstance001() 304 byte suspendPolicy = event.getNextValueAsByte(); in testNewInstance002() 306 logWriter.println(" EVENT_THREAD event: suspendPolicy=" + suspendPolicy in testNewInstance002()
|
D | InvokeMethod003Test.java | 76 byte suspendPolicy = event.getNextValueAsByte(); in testInvokeMethod_null_argument() 78 … logWriter.println(" EVENT_THREAD event: suspendPolicy=" + suspendPolicy + " events=" + events); in testInvokeMethod_null_argument()
|
D | NewInstance002Test.java | 77 byte suspendPolicy = event.getNextValueAsByte(); in testNewInstance_null_argument() 79 … logWriter.println(" EVENT_THREAD event: suspendPolicy=" + suspendPolicy + " events=" + events); in testNewInstance_null_argument()
|
/external/oj-libjdwp/src/share/classes/com/sun/jdi/event/ |
D | EventSet.java | 153 int suspendPolicy(); in suspendPolicy() method
|
/external/oj-libjdwp/src/share/classes/com/sun/jdi/request/ |
D | EventRequest.java | 183 int suspendPolicy(); in suspendPolicy() method
|
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/InterfaceType/ |
D | InvokeMethodTest.java | 72 byte suspendPolicy = event.getNextValueAsByte(); in testInvokeMethodStatic() 74 … logWriter.println(" EVENT_THREAD event: suspendPolicy=" + suspendPolicy + " events=" + events); in testInvokeMethodStatic()
|
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ObjectReference/ |
D | InvokeMethodDefault002Test.java | 76 byte suspendPolicy = event.getNextValueAsByte(); in testInvokeMethod() 79 " EVENT_THREAD event: suspendPolicy=" + suspendPolicy + " events=" + events); in testInvokeMethod()
|
D | InvokeMethodDefaultTest.java | 75 byte suspendPolicy = event.getNextValueAsByte(); in testInvokeMethod() 77 logWriter.println(" EVENT_THREAD event: suspendPolicy=" + suspendPolicy + in testInvokeMethod()
|
D | InvokeMethod002Test.java | 76 byte suspendPolicy = event.getNextValueAsByte(); in testInvokeMethod_null_argument() 78 … logWriter.println(" EVENT_THREAD event: suspendPolicy=" + suspendPolicy + " events=" + events); in testInvokeMethod_null_argument()
|
D | InvokeMethod003Test.java | 78 byte suspendPolicy = event.getNextValueAsByte(); in testInvokeMethod_toString() 80 … logWriter.println(" EVENT_THREAD event: suspendPolicy=" + suspendPolicy + " events=" + events); in testInvokeMethod_toString()
|