Ejemplo n.º 1
0
        /// <summary>
        /// The given breakpoint has been clear by the VM.
        /// Now remove from the list.
        /// </summary>
        protected override void OnReset(DalvikBreakpoint breakpoint)
        {
            // Notify VS
            var bp = (IDebugBreakpoint)breakpoint;

            bp.BoundBreakpoint.OnReset();
            eventCallback.Send(Program, new BreakpointUnboundEvent(bp.BoundBreakpoint));

            // Remove from list
            base.OnReset(breakpoint);
        }
Ejemplo n.º 2
0
        /// <summary>
        /// The given breakpoint has been clear by the VM.
        /// Now remove from the list.
        /// </summary>
        protected override void OnReset(DalvikBreakpoint breakpoint)
        {
            var bp = breakpoint as IDebugBreakpoint;

            // is this one of our breakpoints?
            if (bp != null)
            {
                // Notify VS
                bp.BoundBreakpoint.OnReset();
                eventCallback.Send(Program, new BreakpointUnboundEvent(bp.BoundBreakpoint));
                // Remove from list
                base.OnReset(breakpoint);
            }
        }