Returns true if we should continue checking breakpoint details, else false ===========================================================================
| 1133 | // Returns true if we should continue checking breakpoint details, else false |
| 1134 | //=========================================================================== |
| 1135 | bool _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 |
| 1152 | void ClearTempBreakpoints () |
no outgoing calls
no test coverage detected