| 158 | } |
| 159 | |
| 160 | void VirtualMachineEngine::InsertProbe( |
| 161 | const std::function<bool(VirtualMachineEngine*)>& ProbeFunction) { |
| 162 | probe_list_.EmplaceBack(intrusive::make_shared<VmProbe>(ProbeFunction)); |
| 163 | } |
| 164 | |
| 165 | void VirtualMachineEngine::HandleLocalProbe() { |
| 166 | OF_PROFILER_RANGE_GUARD("HandleLocalProbe"); |
no test coverage detected