| 1451 | } |
| 1452 | |
| 1453 | bool DbgEngAdapter::SupportFeature(DebugAdapterCapacity feature) |
| 1454 | { |
| 1455 | switch (feature) |
| 1456 | { |
| 1457 | case DebugAdapterSupportStepOver: |
| 1458 | return true; |
| 1459 | case DebugAdapterSupportModules: |
| 1460 | return true; |
| 1461 | case DebugAdapterSupportThreads: |
| 1462 | return true; |
| 1463 | default: |
| 1464 | return false; |
| 1465 | } |
| 1466 | } |
| 1467 | |
| 1468 | |
| 1469 | DataBuffer DbgEngAdapter::ReadMemory(std::uintptr_t address, std::size_t size) |
nothing calls this directly
no outgoing calls
no test coverage detected