MCPcopy Create free account
hub / github.com/AppleWin/AppleWin / _BreakpointValid

Function _BreakpointValid

source/Debugger/Debug.cpp:1135–1149  ·  view source on GitHub ↗

Returns true if we should continue checking breakpoint details, else false ===========================================================================

Source from the content-addressed store, hash-verified

1133// Returns true if we should continue checking breakpoint details, else false
1134//===========================================================================
1135bool _BreakpointValid ( Breakpoint_t *pBP ) //, BreakpointSource_t iSrc )
1136{
1137 bool bStatus = false;
1138
1139 if (! pBP->bEnabled)
1140 return bStatus;
1141
1142// if (pBP->eSource != iSrc)
1143// return bStatus;
1144
1145 if (! pBP->nLength)
1146 return bStatus;
1147
1148 return true;
1149}
1150
1151// Stepping
1152void ClearTempBreakpoints ()

Callers 5

ClearTempBreakpointsFunction · 0.85
CheckBreakpointsIOFunction · 0.85
CheckBreakpointsRegFunction · 0.85
CheckBreakpointsVideoFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected