Example #1
0
        /** Breakpoint triggered when the value is modified. */
        public ValueBreakpoint CreateBreakpoint()
        {
            ICorDebugValueBreakpoint bp = null;

            m_val.CreateBreakpoint(out bp);
            return(new ValueBreakpoint(bp));
        }
Example #2
0
        //void CreateRelocBreakpoint(ref Microsoft.Samples.Debugging.CorDebug.NativeApi.ICorDebugValueBreakpoint ppBreakpoint);
        public CorValueBreakpoint CreateRelocBreakpoint()
        {
            ICorDebugValueBreakpoint bp = null;

            m_heapVal.CreateRelocBreakpoint(out bp);
            return(new CorValueBreakpoint(bp));
        }
Example #3
0
        int ICorDebugHeapValue.CreateRelocBreakpoint(out ICorDebugValueBreakpoint ppBreakpoint)
        {
            ppBreakpoint = null;

            return(COM_HResults.E_NOTIMPL);
        }
Example #4
0
 int ICorDebugGenericValue.CreateBreakpoint(out ICorDebugValueBreakpoint ppBreakpoint)
 {
     return(this.ICorDebugValue.CreateBreakpoint(out ppBreakpoint));
 }
 internal CorValueBreakpoint(ICorDebugValueBreakpoint breakpoint) : base(breakpoint)
 {
     m_br = breakpoint;
 }
Example #6
0
 int ICorDebugStringValue.CreateRelocBreakpoint(out ICorDebugValueBreakpoint ppBreakpoint)
 {
     return(this.ICorDebugHeapValue.CreateRelocBreakpoint(out ppBreakpoint));
 }
        int ICorDebugValue.CreateBreakpoint(out ICorDebugValueBreakpoint ppBreakpoint)
        {
            ppBreakpoint = null;

            return(Utility.COM_HResults.E_NOTIMPL);
        }
Example #8
0
 int ICorDebugArrayValue.CreateBreakpoint(out ICorDebugValueBreakpoint ppBreakpoint)
 {
     return(ICorDebugValue.CreateBreakpoint(out ppBreakpoint));
 }
Example #9
0
 int ICorDebugArrayValue.CreateRelocBreakpoint(out ICorDebugValueBreakpoint ppBreakpoint)
 {
     return(this.ICorDebugValue.CreateBreakpoint(out ppBreakpoint));
 }
        int ICorDebugHeapValue.CreateRelocBreakpoint( out ICorDebugValueBreakpoint ppBreakpoint )
        {
            ppBreakpoint = null;

            return Utility.COM_HResults.E_NOTIMPL;            
        }
 int ICorDebugArrayValue.CreateRelocBreakpoint( out ICorDebugValueBreakpoint ppBreakpoint )
 {
     return this.ICorDebugValue.CreateBreakpoint( out ppBreakpoint );            
 }
 int ICorDebugObjectValue.CreateBreakpoint( out ICorDebugValueBreakpoint ppBreakpoint )
 {
     return this.ICorDebugValue.CreateBreakpoint( out ppBreakpoint );            
 }
 int ICorDebugHandleValue.CreateBreakpoint( out ICorDebugValueBreakpoint ppBreakpoint )
 {
     return this.ICorDebugValue.CreateBreakpoint( out ppBreakpoint );            
 }
 int ICorDebugReferenceValue.CreateBreakpoint( out ICorDebugValueBreakpoint ppBreakpoint )
 {
     return this.ICorDebugValue.CreateBreakpoint( out ppBreakpoint );
 }
 int ICorDebugGenericValue.CreateBreakpoint( out ICorDebugValueBreakpoint ppBreakpoint )
 {
     return this.ICorDebugValue.CreateBreakpoint( out ppBreakpoint );            
 }
Example #16
0
 int ICorDebugReferenceValue.CreateBreakpoint(out ICorDebugValueBreakpoint ppBreakpoint)
 {
     return(this.ICorDebugValue.CreateBreakpoint(out ppBreakpoint));
 }
 internal CorValueBreakpoint(ICorDebugValueBreakpoint breakpoint) : base(breakpoint)
 {
     m_br = breakpoint;
 }
Example #18
0
 int ICorDebugHandleValue.CreateBreakpoint(out ICorDebugValueBreakpoint ppBreakpoint)
 {
     return(this.ICorDebugValue.CreateBreakpoint(out ppBreakpoint));
 }
 int ICorDebugStringValue.CreateRelocBreakpoint( out ICorDebugValueBreakpoint ppBreakpoint )
 {
     return this.ICorDebugHeapValue.CreateRelocBreakpoint( out ppBreakpoint );
 }
Example #20
0
 int ICorDebugObjectValue.CreateBreakpoint(out ICorDebugValueBreakpoint ppBreakpoint)
 {
     return(this.ICorDebugValue.CreateBreakpoint(out ppBreakpoint));
 }
Example #21
0
 int ICorDebugStringValue.CreateBreakpoint(out ICorDebugValueBreakpoint ppBreakpoint)
 {
     return(ICorDebugValue.CreateBreakpoint(out ppBreakpoint));
 }
Example #22
0
 int ICorDebugBoxValue.CreateRelocBreakpoint(out ICorDebugValueBreakpoint ppBreakpoint)
 {
     return(ICorDebugValue.CreateBreakpoint(out ppBreakpoint));
 }
Example #23
0
 internal ValueBreakpoint(ICorDebugValueBreakpoint br)
     : base(br)
 {
 }