public virtual void add_provider(Provider.BreakpointProvider provider, EBreakpointType type) { this._providers[type] = provider; if (type == EBreakpointType.BREAKPOINT_HW) { this._fpb = provider; } }
public BreakpointManager(Core.Target core) { this._breakpoints = new Dictionary <UInt32, Provider.Breakpoint> { }; this._core = core; this._fpb = null; this._providers = new Dictionary <EBreakpointType, Provider.BreakpointProvider> { }; }