Home
last modified time | relevance | path

Searched refs:waitForReply (Results 1 – 10 of 10) sorted by relevance

/external/oj-libjdwp/src/share/classes/com/sun/tools/jdi/
DStackFrameImpl.java137 waitForReply(vm, ps).objectThis; in thisObject()
233 values = JDWP.StackFrame.GetValues.waitForReply(vm, ps).values; in getValues()
292 JDWP.StackFrame.SetValues.waitForReply(vm, ps); in setValue()
350 values = JDWP.StackFrame.GetValues.waitForReply(vm, ps).values; in getArgumentValues()
381 JDWP.StackFrame.PopFrames.waitForReply(vm, stream); in pop()
DClassTypeImpl.java210 ret = JDWP.ClassType.NewInstance.waitForReply(vm, stream); in newInstance()
287 InvocationResult waitForReply(PacketStream stream) throws JDWPException { in waitForReply() method in ClassTypeImpl
288 return new IResult(JDWP.ClassType.InvokeMethod.waitForReply(vm, stream)); in waitForReply()
DInterfaceTypeImpl.java110 InvocationResult waitForReply(PacketStream stream) throws JDWPException { in waitForReply() method in InterfaceTypeImpl
111 return new IResult(JDWP.InterfaceType.InvokeMethod.waitForReply(vm, stream)); in waitForReply()
DInvokableTypeImpl.java113 ret = waitForReply(stream); in invokeMethod()
293 abstract InvocationResult waitForReply(PacketStream stream) throws JDWPException; in waitForReply() method in InvokableTypeImpl
DTargetVM.java301 void waitForReply(Packet packet) { in waitForReply() method in TargetVM
DVirtualMachineImpl.java425 JDWP.VirtualMachine.Resume.waitForReply(vm, stream); in resume()
1036 target.waitForReply(packet); in waitForTargetReply()
DPacketStream.java64 void waitForReply() throws JDWPException { in waitForReply() method in PacketStream
DObjectReferenceImpl.java416 ret = JDWP.ObjectReference.InvokeMethod.waitForReply(vm, stream); in invokeMethod()
DThreadReferenceImpl.java219 JDWP.ThreadReference.Resume.waitForReply(vm, stream); in resume()
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/
DPacketDispatcher.java268 public ReplyPacket waitForReply(CommandPacket command, long timeout) in waitForReply() method in PacketDispatcher.CommandsSynchronyzer
678 return commandsSynchronyzer.waitForReply(command, timeout); in performCommand()