| 860 | } |
| 861 | |
| 862 | bool RdApplication::IsCurrentDdaCapture() { |
| 863 | std::lock_guard<std::mutex> lk(capture_plugin_mtx_); |
| 864 | return capture_plugin_ && capture_plugin_->GetPluginId() == kDdaCapturePluginId; |
| 865 | } |
| 866 | |
| 867 | bool RdApplication::TryInitDdaCapture() { |
| 868 | if (!dda_capture_plugin_) { |
nothing calls this directly
no test coverage detected