Lines Matching defs:packet

44     protected ParsedEvent(byte suspendPolicy, Packet packet, byte eventKind) {
46 this.requestID = packet.getNextValueAsInt();
86 * @param packet
88 protected EventThread(byte suspendPolicy, Packet packet, byte eventKind) {
89 super(suspendPolicy, packet, eventKind);
90 this.threadID = packet.getNextValueAsThreadID();
112 * @param packet
114 protected EventThreadLocation(byte suspendPolicy, Packet packet,
116 super(suspendPolicy, packet, eventKind);
117 this.location = packet.getNextValueAsLocation();
140 * @param packet
142 protected EventThreadMonitor(byte suspendPolicy, Packet packet,
144 super(suspendPolicy, packet, eventKind);
145 this.taggedObject = packet.getNextValueAsTaggedObject();
146 this.location = packet.getNextValueAsLocation();
173 * @param packet
175 private Event_VM_START(byte suspendPolicy, Packet packet) {
176 super(suspendPolicy, packet, JDWPConstants.EventKind.VM_START);
189 * @param packet
191 private Event_SINGLE_STEP(byte suspendPolicy, Packet packet) {
192 super(suspendPolicy, packet, JDWPConstants.EventKind.SINGLE_STEP);
205 * @param packet
207 private Event_BREAKPOINT(byte suspendPolicy, Packet packet) {
208 super(suspendPolicy, packet, JDWPConstants.EventKind.BREAKPOINT);
221 * @param packet
223 private Event_METHOD_ENTRY(byte suspendPolicy, Packet packet) {
224 super(suspendPolicy, packet, JDWPConstants.EventKind.METHOD_ENTRY);
237 * @param packet
239 private Event_METHOD_EXIT(byte suspendPolicy, Packet packet) {
240 super(suspendPolicy, packet, JDWPConstants.EventKind.METHOD_EXIT);
255 * @param packet
257 private Event_METHOD_EXIT_WITH_RETURN_VALUE(byte suspendPolicy, Packet packet) {
258 super(suspendPolicy, packet, JDWPConstants.EventKind.METHOD_EXIT_WITH_RETURN_VALUE);
259 returnValue = packet.getNextValueAsValue();
276 * @param packet
278 private Event_MONITOR_CONTENDED_ENTER(byte suspendPolicy, Packet packet) {
279 super(suspendPolicy, packet, JDWPConstants.EventKind.MONITOR_CONTENDED_ENTER);
293 * @param packet
295 private Event_MONITOR_CONTENDED_ENTERED(byte suspendPolicy, Packet packet) {
296 super(suspendPolicy, packet, JDWPConstants.EventKind.MONITOR_CONTENDED_ENTERED);
312 * @param packet
314 private Event_MONITOR_WAIT(byte suspendPolicy, Packet packet) {
315 super(suspendPolicy, packet, JDWPConstants.EventKind.MONITOR_WAIT);
316 this.timeout = packet.getNextValueAsLong();
335 * @param packet
337 private Event_MONITOR_WAITED(byte suspendPolicy, Packet packet) {
338 super(suspendPolicy, packet, JDWPConstants.EventKind.MONITOR_WAITED);
339 this.timed_out = packet.getNextValueAsBoolean();
360 * @param packet
362 private Event_EXCEPTION(byte suspendPolicy, Packet packet) {
363 super(suspendPolicy, packet, JDWPConstants.EventKind.EXCEPTION);
364 exception = packet.getNextValueAsTaggedObject();
365 catchLocation = packet.getNextValueAsLocation();
392 * @param packet
394 private Event_THREAD_START(byte suspendPolicy, Packet packet) {
395 super(suspendPolicy, packet, JDWPConstants.EventKind.THREAD_START);
408 * @param packet
410 private Event_THREAD_DEATH(byte suspendPolicy, Packet packet) {
411 super(suspendPolicy, packet, JDWPConstants.EventKind.THREAD_DEATH);
432 * @param packet
434 protected Event_CLASS_PREPARE(byte suspendPolicy, Packet packet) {
435 super(suspendPolicy, packet, JDWPConstants.EventKind.CLASS_PREPARE);
436 refTypeTag = packet.getNextValueAsByte();
437 typeID = packet.getNextValueAsReferenceTypeID();
438 signature = packet.getNextValueAsString();
439 status = packet.getNextValueAsInt();
482 * @param packet
484 private Event_CLASS_UNLOAD(byte suspendPolicy, Packet packet) {
485 super(suspendPolicy, packet, JDWPConstants.EventKind.CLASS_UNLOAD);
486 signature = packet.getNextValueAsString();
514 * @param packet
516 private Event_FIELD_ACCESS(byte suspendPolicy, Packet packet) {
517 super(suspendPolicy, packet, JDWPConstants.EventKind.FIELD_ACCESS);
518 refTypeTag = packet.getNextValueAsByte();
519 typeID = packet.getNextValueAsReferenceTypeID();
520 fieldID = packet.getNextValueAsFieldID();
521 object = packet.getNextValueAsTaggedObject();
571 * @param packet
573 private Event_FIELD_MODIFICATION(byte suspendPolicy, Packet packet) {
574 super(suspendPolicy, packet,
576 refTypeTag = packet.getNextValueAsByte();
577 typeID = packet.getNextValueAsReferenceTypeID();
578 fieldID = packet.getNextValueAsFieldID();
579 object = packet.getNextValueAsTaggedObject();
580 valueToBe = packet.getNextValueAsValue();
626 * @param packet
628 private Event_VM_DEATH(byte suspendPolicy, Packet packet) {
629 super(suspendPolicy, packet, JDWPConstants.EventKind.VM_DEATH);
636 * @param packet
640 public static ParsedEvent[] parseEventPacket(Packet packet) {
642 Packet packetCopy = new Packet(packet.toBytesArray());
652 // For all events in packet