MCPcopy Create free account
hub / github.com/Vector35/debugger / SupportFeature

Method SupportFeature

core/adapters/dbgengadapter.cpp:1453–1466  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1451}
1452
1453bool 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
1469DataBuffer DbgEngAdapter::ReadMemory(std::uintptr_t address, std::size_t size)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected