C# 클래스 Mono.Debugger.Breakpoint

This is an abstract base class which is implemented by the user interface to hold the user's settings for a breakpoint.
상속: Event
파일 보기 프로젝트 열기: baulig/debugger 1 사용 예제들

공개 메소드들

메소드 설명
CheckBreakpointHit ( Thread target, TargetAddress address ) : bool

This method is called each time the breakpoint is hit. It returns true if the target should remain stopped and false if the breakpoint is to be ignored.

The @target argument is *not* serializable and may not be used anywhere outside this handler.

Remove ( Thread target ) : void
ToString ( ) : string

보호된 메소드들

메소드 설명
Breakpoint ( EventType type, int index, string name, ThreadGroup group ) : System
Breakpoint ( EventType type, string name, ThreadGroup group ) : System
GetEventType ( HardwareWatchType type ) : EventType
OnBreakpointBound ( ) : void
OnBreakpointError ( string message ) : void
OnResolveFailed ( ) : void

비공개 메소드들

메소드 설명
BreakpointHandler ( Inferior inferior, bool &remain_stopped ) : bool

Internal breakpoint handler.

The return value specifies whether we already dealt with the breakpoint; so you normally make it return `true' when overriding.

Resolve ( Thread target, StackFrame frame ) : BreakpointHandle

메소드 상세

Breakpoint() 보호된 메소드

protected Breakpoint ( EventType type, int index, string name, ThreadGroup group ) : System
type EventType
index int
name string
group ThreadGroup
리턴 System

Breakpoint() 보호된 메소드

protected Breakpoint ( EventType type, string name, ThreadGroup group ) : System
type EventType
name string
group ThreadGroup
리턴 System

CheckBreakpointHit() 공개 메소드

This method is called each time the breakpoint is hit. It returns true if the target should remain stopped and false if the breakpoint is to be ignored.
The @target argument is *not* serializable and may not be used anywhere outside this handler.
public CheckBreakpointHit ( Thread target, TargetAddress address ) : bool
target Thread
address TargetAddress
리턴 bool

GetEventType() 보호된 정적인 메소드

protected static GetEventType ( HardwareWatchType type ) : EventType
type HardwareWatchType
리턴 EventType

OnBreakpointBound() 보호된 메소드

protected OnBreakpointBound ( ) : void
리턴 void

OnBreakpointError() 보호된 메소드

protected OnBreakpointError ( string message ) : void
message string
리턴 void

OnResolveFailed() 보호된 메소드

protected OnResolveFailed ( ) : void
리턴 void

Remove() 공개 메소드

public Remove ( Thread target ) : void
target Thread
리턴 void

ToString() 공개 메소드

public ToString ( ) : string
리턴 string