Examples of ThreadReferenceImpl


Examples of org.eclipse.jdi.internal.ThreadReferenceImpl

  
  /* (non-Javadoc)
   * @see com.sun.jdi.request.EventRequestManager#createStepRequest(com.sun.jdi.ThreadReference, int, int)
   */
  public StepRequest createStepRequest(ThreadReference thread, int size, int depth) throws DuplicateRequestException, ObjectCollectedException {
       ThreadReferenceImpl threadImpl = (ThreadReferenceImpl)thread;
    StepRequestImpl req = new StepRequestImpl(virtualMachineImpl());   
    req.addStepFilter(threadImpl, size, depth);
    STEP_TYPE.requests.add(req);
    return req;
  }
View Full Code Here

Examples of org.eclipse.jdi.internal.ThreadReferenceImpl

  /* (non-Javadoc)
   * @see org.eclipse.jdi.hcr.EventRequestManager#createReenterStepRequest(com.sun.jdi.ThreadReference)
   */
  public org.eclipse.jdi.hcr.ReenterStepRequest createReenterStepRequest(ThreadReference thread) {
    virtualMachineImpl().checkHCRSupported();
       ThreadReferenceImpl threadImpl = (ThreadReferenceImpl)thread;
    ReenterStepRequestImpl req = new ReenterStepRequestImpl(virtualMachineImpl());
    // Note that the StepFilter is only used to specify the thread.
    // The size is ignored and the depth will always be written as HCR_STEP_DEPTH_REENTER_JDWP.
    req.addStepFilter(threadImpl, StepRequest.STEP_MIN, 0);
    // Since this is a special case of a step request, we use the same request list.
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.