Home
last modified time | relevance | path

Searched refs:JDWP (Results 1 – 25 of 49) sorted by relevance

12

/external/oj-libjdwp/src/share/classes/com/sun/tools/jdi/
DEventSetImpl.java81 protected EventImpl(JDWP.Event.Composite.Events.EventsCommon evt, in EventImpl()
173 ThreadedEventImpl(JDWP.Event.Composite.Events.EventsCommon evt, in ThreadedEventImpl()
192 LocatableEventImpl(JDWP.Event.Composite.Events.EventsCommon evt, in LocatableEventImpl()
219 BreakpointEventImpl(JDWP.Event.Composite.Events.Breakpoint evt) { in BreakpointEventImpl()
229 StepEventImpl(JDWP.Event.Composite.Events.SingleStep evt) { in StepEventImpl()
240 MethodEntryEventImpl(JDWP.Event.Composite.Events.MethodEntry evt) { in MethodEntryEventImpl()
253 MethodExitEventImpl(JDWP.Event.Composite.Events.MethodExit evt) { in MethodExitEventImpl()
257 MethodExitEventImpl(JDWP.Event.Composite.Events.MethodExitWithReturnValue evt) { in MethodExitEventImpl()
280 MonitorContendedEnterEventImpl(JDWP.Event.Composite.Events.MonitorContendedEnter evt) { in MonitorContendedEnterEventImpl()
299 MonitorContendedEnteredEventImpl(JDWP.Event.Composite.Events.MonitorContendedEntered evt) { in MonitorContendedEnteredEventImpl()
[all …]
DEventRequestManagerImpl.java30 import com.sun.tools.jdi.JDWP;
51 case JDWP.SuspendPolicy.ALL: in JDWPtoJDISuspendPolicy()
53 case JDWP.SuspendPolicy.EVENT_THREAD: in JDWPtoJDISuspendPolicy()
55 case JDWP.SuspendPolicy.NONE: in JDWPtoJDISuspendPolicy()
65 return JDWP.SuspendPolicy.ALL; in JDItoJDWPSuspendPolicy()
67 return JDWP.SuspendPolicy.EVENT_THREAD; in JDItoJDWPSuspendPolicy()
69 return JDWP.SuspendPolicy.NONE; in JDItoJDWPSuspendPolicy()
98 byte suspendPolicy = JDWP.SuspendPolicy.ALL;
179 filters.add(JDWP.EventRequest.Set.Modifier.Count.create(count)); in addCountFilter()
197 JDWP.EventRequest.Set.Modifier[] mods = in set()
[all …]
DVirtualMachineImpl.java90 private JDWP.VirtualMachine.Version versionInfo;
91 private JDWP.VirtualMachine.ClassPaths pathInfo;
92 private JDWP.VirtualMachine.Capabilities capabilities = null;
93 private JDWP.VirtualMachine.CapabilitiesNew capabilitiesNew = null;
196 JDWP.VirtualMachine.IDSizes idSizes; in VirtualMachineImpl()
198 idSizes = JDWP.VirtualMachine.IDSizes.process(vm); in VirtualMachineImpl()
297 JDWP.VirtualMachine.RedefineClasses.ClassDef[] defs = in redefineClasses()
298 new JDWP.VirtualMachine.RedefineClasses.ClassDef[cnt]; in redefineClasses()
308 defs[i] = new JDWP.VirtualMachine.RedefineClasses in redefineClasses()
316 JDWP.VirtualMachine.RedefineClasses. in redefineClasses()
[all …]
DJNITypeParser.java155 case (JDWP.Tag.ARRAY): in nextSignature()
158 case (JDWP.Tag.OBJECT): in nextSignature()
166 case (JDWP.Tag.VOID): in nextSignature()
167 case (JDWP.Tag.BOOLEAN): in nextSignature()
168 case (JDWP.Tag.BYTE): in nextSignature()
169 case (JDWP.Tag.CHAR): in nextSignature()
170 case (JDWP.Tag.SHORT): in nextSignature()
171 case (JDWP.Tag.INT): in nextSignature()
172 case (JDWP.Tag.LONG): in nextSignature()
173 case (JDWP.Tag.FLOAT): in nextSignature()
[all …]
DStackFrameImpl.java130 ps = JDWP.StackFrame.ThisObject. in thisObject()
136 thisObject = JDWP.StackFrame.ThisObject. in thisObject()
140 case JDWP.Error.INVALID_FRAMEID: in thisObject()
141 case JDWP.Error.THREAD_NOT_SUSPENDED: in thisObject()
142 case JDWP.Error.INVALID_THREAD: in thisObject()
209 JDWP.StackFrame.GetValues.SlotInfo[] slots = in getValues()
210 new JDWP.StackFrame.GetValues.SlotInfo[count]; in getValues()
218 slots[i] = new JDWP.StackFrame.GetValues.SlotInfo(variable.slot(), in getValues()
227 ps = JDWP.StackFrame.GetValues.enqueueCommand(vm, thread, id, slots); in getValues()
233 values = JDWP.StackFrame.GetValues.waitForReply(vm, ps).values; in getValues()
[all …]
DThreadReferenceImpl.java67 JDWP.ThreadReference.Status status = null;
168 name = JDWP.ThreadReference.Name.process(vm, this) in name()
194 JDWP.ThreadReference.Suspend.process(vm, this); in suspend()
216 stream = JDWP.ThreadReference.Resume.enqueueCommand(vm, this); in resume()
219 JDWP.ThreadReference.Resume.waitForReply(vm, stream); in resume()
234 return JDWP.ThreadReference.SuspendCount.process(vm, this).suspendCount; in suspendCount()
251 JDWP.ThreadReference.Stop.process(vm, this, in stop()
260 JDWP.ThreadReference.Interrupt.process(vm, this); in interrupt()
266 private JDWP.ThreadReference.Status jdwpStatus() { in jdwpStatus()
268 JDWP.ThreadReference.Status myStatus = snapshot.status; in jdwpStatus()
[all …]
DJDWPException.java44 case JDWP.Error.INVALID_OBJECT: in toJDIException()
46 case JDWP.Error.VM_DEAD: in toJDIException()
48 case JDWP.Error.OUT_OF_MEMORY: in toJDIException()
50 case JDWP.Error.CLASS_NOT_PREPARED: in toJDIException()
52 case JDWP.Error.INVALID_FRAMEID: in toJDIException()
53 case JDWP.Error.NOT_CURRENT_FRAME: in toJDIException()
55 case JDWP.Error.NOT_IMPLEMENTED: in toJDIException()
57 case JDWP.Error.INVALID_INDEX: in toJDIException()
58 case JDWP.Error.INVALID_LENGTH: in toJDIException()
60 case JDWP.Error.TYPE_MISMATCH: in toJDIException()
[all …]
DPacketStream.java183 tag = JDWP.TypeTag.CLASS; in writeLocation()
186 tag = JDWP.TypeTag.INTERFACE; in writeLocation()
232 case JDWP.Tag.BYTE: in writeUntaggedValueChecked()
239 case JDWP.Tag.CHAR: in writeUntaggedValueChecked()
246 case JDWP.Tag.FLOAT: in writeUntaggedValueChecked()
253 case JDWP.Tag.DOUBLE: in writeUntaggedValueChecked()
260 case JDWP.Tag.INT: in writeUntaggedValueChecked()
267 case JDWP.Tag.LONG: in writeUntaggedValueChecked()
274 case JDWP.Tag.SHORT: in writeUntaggedValueChecked()
281 case JDWP.Tag.BOOLEAN: in writeUntaggedValueChecked()
[all …]
DObjectReferenceImpl.java43 JDWP.ObjectReference.MonitorInfo monitorInfo = null;
152 JDWP.ObjectReference.ReferenceType rtinfo = in referenceType()
153 JDWP.ObjectReference.ReferenceType.process(vm, this); in referenceType()
202 JDWP.ObjectReference.GetValues.Field[] queryFields = in getValues()
203 new JDWP.ObjectReference.GetValues.Field[size]; in getValues()
206 queryFields[i] = new JDWP.ObjectReference.GetValues.Field( in getValues()
211 values = JDWP.ObjectReference.GetValues. in getValues()
250 JDWP.ObjectReference.SetValues.FieldValue[] fvals = in setValue()
251 new JDWP.ObjectReference.SetValues.FieldValue[1]; in setValue()
252 fvals[0] = new JDWP.ObjectReference.SetValues.FieldValue( in setValue()
[all …]
DReferenceTypeImpl.java72 JDWP.ClassStatus.INITIALIZED | JDWP.ClassStatus.ERROR;
178 signature = JDWP.ReferenceType.Signature. in signature()
193 JDWP.ReferenceType.SignatureWithGeneric result; in genericSignature()
195 result = JDWP.ReferenceType.SignatureWithGeneric. in genericSignature()
212 JDWP.ReferenceType.ClassLoader. in classLoader()
281 if ((status & JDWP.ClassStatus.VERIFIED) == 0) { in isVerified()
284 return (status & JDWP.ClassStatus.VERIFIED) != 0; in isVerified()
293 return (status & JDWP.ClassStatus.INITIALIZED) != 0; in isInitialized()
302 return (status & JDWP.ClassStatus.ERROR) != 0; in failedToInitialize()
309 JDWP.ReferenceType.FieldsWithGeneric.FieldInfo[] jdwpFields; in fields()
[all …]
DClassTypeImpl.java36 final private JDWP.ClassType.InvokeMethod rslt;
38 public IResult(JDWP.ClassType.InvokeMethod rslt) { in IResult()
66 sup = JDWP.ClassType.Superclass. in superclass()
137 JDWP.ClassType.SetValues.FieldValue[] values = in setValue()
138 new JDWP.ClassType.SetValues.FieldValue[1]; in setValue()
139 values[0] = new JDWP.ClassType.SetValues.FieldValue( in setValue()
145 JDWP.ClassType.SetValues.process(vm, this, values); in setValue()
171 return JDWP.ClassType.NewInstance.enqueueCommand( in sendNewInstanceCommand()
206 JDWP.ClassType.NewInstance ret = null; in newInstance()
210 ret = JDWP.ClassType.NewInstance.waitForReply(vm, stream); in newInstance()
[all …]
DThreadGroupReferenceImpl.java41 JDWP.ThreadGroupReference.Children kids = null;
63 name = JDWP.ThreadGroupReference.Name. in name()
78 parent = JDWP.ThreadGroupReference.Parent. in parent()
108 private JDWP.ThreadGroupReference.Children kids() { in kids()
109 JDWP.ThreadGroupReference.Children kids = null; in kids()
117 kids = JDWP.ThreadGroupReference.Children in kids()
147 return JDWP.Tag.THREAD_GROUP; in typeValueKey()
DConcreteMethodImpl.java253 bytecodes = JDWP.Method.Bytecodes. in bytecodes()
356 JDWP.Method.LineTable lntab = null; in getBaseLocations()
358 lntab = JDWP.Method.LineTable.process(vm, declaringType, ref); in getBaseLocations()
441 JDWP.Method.VariableTable vartab = null; in getVariables1_4()
443 vartab = JDWP.Method.VariableTable. in getVariables1_4()
446 if (exc.errorCode() == JDWP.Error.ABSENT_INFORMATION) { in getVariables1_4()
459 JDWP.Method.VariableTable.SlotInfo si = vartab.slots[i]; in getVariables1_4()
488 JDWP.Method.VariableTableWithGeneric vartab = null; in getVariables1()
490 vartab = JDWP.Method.VariableTableWithGeneric. in getVariables1()
493 if (exc.errorCode() == JDWP.Error.ABSENT_INFORMATION) { in getVariables1()
[all …]
DClassObjectReferenceImpl.java42 JDWP.ClassObjectReference.ReflectedType reply = in reflectedType()
43 JDWP.ClassObjectReference.ReflectedType.process(vm, this); in reflectedType()
55 return JDWP.Tag.CLASS_OBJECT; in typeValueKey()
DInterfaceTypeImpl.java40 final private JDWP.InterfaceType.InvokeMethod rslt;
42 public IResult(JDWP.InterfaceType.InvokeMethod rslt) { in IResult()
111 return new IResult(JDWP.InterfaceType.InvokeMethod.waitForReply(vm, stream)); in waitForReply()
120 JDWP.InterfaceType.InvokeMethod.enqueueCommand(vm, in getInvokeMethodSender()
DClassLoaderReferenceImpl.java72 JDWP.ClassLoaderReference.VisibleClasses.ClassInfo[] in visibleClasses()
73 jdwpClasses = JDWP.ClassLoaderReference.VisibleClasses. in visibleClasses()
111 return JDWP.Tag.CLASS_LOADER; in typeValueKey()
DArrayReferenceImpl.java63 length = JDWP.ArrayReference.Length. in length()
120 vals = cast(JDWP.ArrayReference.GetValues.process(vm, this, index, length).values); in getValues()
197 JDWP.ArrayReference.SetValues. in setValues()
211 return JDWP.Tag.ARRAY; in typeValueKey()
DStringReferenceImpl.java44 value = JDWP.StringReference.Value. in value()
58 return JDWP.Tag.STRING; in typeValueKey()
DEventQueueImpl.java77 (byte)JDWP.EventKind.VM_DISCONNECTED)); in close()
113 if ((eventSet != null) && (eventSet.suspendPolicy() == JDWP.SuspendPolicy.ALL)) { in remove()
DTargetVM.java211 case JDWP.Event.COMMAND_SET: in handleVMCommand()
363 JDWP.VirtualMachine.HoldEvents.process(vm); in run()
365 JDWP.VirtualMachine.ReleaseEvents.process(vm); in run()
DVMState.java201 threads = Arrays.asList((ThreadReference[])JDWP.VirtualMachine.AllThreads. in allThreads()
228 (ThreadGroupReference[])JDWP.VirtualMachine.TopLevelThreadGroups. in topLevelThreadGroups()
DVoidTypeImpl.java36 return String.valueOf((char)JDWP.Tag.VOID); in signature()
DIntegerTypeImpl.java37 return String.valueOf((char)JDWP.Tag.INT); in signature()
/external/oj-libjdwp/make/data/jdwp/
Djdwp.spec26 JDWP "Java(tm) Debug Wire Protocol"
2744 (Alt VMStart=JDWP.EventKind.VM_START
2758 (Alt SingleStep=JDWP.EventKind.SINGLE_STEP
2766 (Alt Breakpoint=JDWP.EventKind.BREAKPOINT
2774 (Alt MethodEntry=JDWP.EventKind.METHOD_ENTRY
2788 (Alt MethodExit=JDWP.EventKind.METHOD_EXIT
2800 (Alt MethodExitWithReturnValue=JDWP.EventKind.METHOD_EXIT_WITH_RETURN_VALUE
2813 (Alt MonitorContendedEnter=JDWP.EventKind.MONITOR_CONTENDED_ENTER
2826 (Alt MonitorContendedEntered=JDWP.EventKind.MONITOR_CONTENDED_ENTERED
2839 (Alt MonitorWait=JDWP.EventKind.MONITOR_WAIT
[all …]
/external/oj-libjdwp/
DAndroid.bp133 out: ["JDWP.java"],
158 // The JDWP.java file that contains all the constants.

12