int IDebugEngine2.CreatePendingBreakpoint(IDebugBreakpointRequest2 pBPRequest, out IDebugPendingBreakpoint2 ppPendingBP) { ppPendingBP = new AD7PendingBreakpoint(this, pBPRequest); return(VSConstants.S_OK); }
public AD7ErrorBreakpoint(AD7PendingBreakpoint pendingBreakpoint, AD7ErrorBreakpointResolution errorResolution) { PendingBreakpoint = pendingBreakpoint; ErrorResolution = errorResolution; }
int IDebugEngine2.CreatePendingBreakpoint(IDebugBreakpointRequest2 pBPRequest, out IDebugPendingBreakpoint2 ppPendingBP) { ppPendingBP = new AD7PendingBreakpoint(this, pBPRequest); return VSConstants.S_OK; }
public AD7BoundBreakpoint(AD7PendingBreakpoint pendingBreakpoint, RSourceLocation location, enum_PENDING_BP_STATE state) { PendingBreakpoint = pendingBreakpoint; Location = location; SetState((enum_BP_STATE)state); }
public AD7BreakpointErrorEvent(AD7PendingBreakpoint pendingBreakpoint, AD7Engine engine) { m_engine = engine; m_pendingBreakpoint = pendingBreakpoint; }
public AD7BreakpointBoundEvent(AD7PendingBreakpoint pendingBreakpoint, AD7BoundBreakpoint boundBreakpoint) { m_pendingBreakpoint = pendingBreakpoint; m_boundBreakpoint = boundBreakpoint; }