| 4188 | } |
| 4189 | |
| 4190 | bool WinDebugger::HasLineInfoAt(addr_target address) |
| 4191 | { |
| 4192 | BP_ZONE("WinDebugger::HasLineInfoAt"); |
| 4193 | |
| 4194 | DbgSubprogram* dbgSubprogram = NULL; |
| 4195 | auto dwLineData = FindLineDataAtAddress(address, &dbgSubprogram); |
| 4196 | return (dwLineData != NULL) && (dwLineData->IsStackFrameSetup()) && (dbgSubprogram->GetLineAddr(*dwLineData) == address); |
| 4197 | } |
| 4198 | |
| 4199 | void WinDebugger::StepLineTryPause(addr_target address, bool requireExactMatch) |
| 4200 | { |
nothing calls this directly
no test coverage detected