| 642 | } |
| 643 | |
| 644 | bool DbgEngAdapter::Quit() |
| 645 | { |
| 646 | m_aboutToBeKilled = true; |
| 647 | m_lastOperationIsStepInto = false; |
| 648 | if (!this->m_debugClient) |
| 649 | return false; |
| 650 | |
| 651 | if (this->m_debugClient->TerminateProcesses() != S_OK) |
| 652 | return false; |
| 653 | |
| 654 | m_debugClient->ExitDispatch(reinterpret_cast<PDEBUG_CLIENT>(m_debugClient)); |
| 655 | return true; |
| 656 | } |
| 657 | |
| 658 | std::vector<DebugProcess> DbgEngAdapter::GetProcessList() |
| 659 | { |
nothing calls this directly
no outgoing calls
no test coverage detected