Inheritance: IDebugPendingBreakpoint2
Example #1
0
 int IDebugEngine2.CreatePendingBreakpoint(IDebugBreakpointRequest2 pBPRequest, out IDebugPendingBreakpoint2 ppPendingBP)
 {
     ppPendingBP = new AD7PendingBreakpoint(this, pBPRequest);
     return(VSConstants.S_OK);
 }
Example #2
0
 public AD7ErrorBreakpoint(AD7PendingBreakpoint pendingBreakpoint, AD7ErrorBreakpointResolution errorResolution)
 {
     PendingBreakpoint = pendingBreakpoint;
     ErrorResolution   = errorResolution;
 }
Example #3
0
 public AD7ErrorBreakpoint(AD7PendingBreakpoint pendingBreakpoint, AD7ErrorBreakpointResolution errorResolution) {
     PendingBreakpoint = pendingBreakpoint;
     ErrorResolution = errorResolution;
 }
Example #4
0
 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);
 }
Example #6
0
 public AD7BoundBreakpoint(AD7PendingBreakpoint pendingBreakpoint, RSourceLocation location, enum_PENDING_BP_STATE state) {
     PendingBreakpoint = pendingBreakpoint;
     Location = location;
     SetState((enum_BP_STATE)state);
 }
Example #7
0
 public AD7BreakpointErrorEvent(AD7PendingBreakpoint pendingBreakpoint, AD7Engine engine)
 {
     m_engine            = engine;
     m_pendingBreakpoint = pendingBreakpoint;
 }
Example #8
0
 public AD7BreakpointBoundEvent(AD7PendingBreakpoint pendingBreakpoint, AD7BoundBreakpoint boundBreakpoint)
 {
     m_pendingBreakpoint = pendingBreakpoint;
     m_boundBreakpoint   = boundBreakpoint;
 }
Example #9
0
 public AD7BreakpointErrorEvent(AD7PendingBreakpoint pendingBreakpoint, AD7Engine engine) {
     m_engine = engine;
     m_pendingBreakpoint = pendingBreakpoint;
 }
Example #10
0
 public AD7BreakpointBoundEvent(AD7PendingBreakpoint pendingBreakpoint, AD7BoundBreakpoint boundBreakpoint) {
     m_pendingBreakpoint = pendingBreakpoint;
     m_boundBreakpoint = boundBreakpoint;
 }