| 1091 | |
| 1092 | |
| 1093 | bool DebuggerController::ControllerExists(BinaryViewRef data) |
| 1094 | { |
| 1095 | for (size_t i = 0; i < g_controllerCount; i++) |
| 1096 | { |
| 1097 | DbgRef<DebuggerController> controller = g_debuggerControllers[i]; |
| 1098 | if (!controller) |
| 1099 | continue; |
| 1100 | if (controller->GetData() == data) |
| 1101 | return true; |
| 1102 | if (controller->GetLiveView() == data) |
| 1103 | return true; |
| 1104 | } |
| 1105 | |
| 1106 | return false; |
| 1107 | } |
| 1108 | |
| 1109 | |
| 1110 | void DebuggerController::Destroy() |
nothing calls this directly
no test coverage detected