Lines Matching full:probe
26 // When an interface passes a probe, also save its D-Bus path with it.
65 lg2::debug("Found probe match on {PATH} {IFACE}", "PATH", path, in probeDbus()
74 // default probe entry point, iterates a list looking for specific types to
75 // call specific probe functions
76 bool probe(const std::vector<std::string>& probeCommand, in probe() function
87 for (const auto& probe : probeCommand) in probe() local
89 FoundProbeTypeT probeType = findProbeType(probe); in probe()
106 // set current value to last, this probe type shouldn't in probe()
120 if (!std::regex_search(probe, match, command)) in probe()
123 << "found probe syntax error " << probe << "\n"; in probe()
142 if (!std::regex_search(probe, match, command)) in probe()
144 std::cerr << "dbus probe syntax error " << probe << "\n"; in probe()
161 auto findStart = probe.find('('); in probe()
167 std::string probeInterface = probe.substr(0, findStart); in probe()
192 // probe passed, but empty device in probe()
220 if (probe(_probeCommand, scan, foundDevs)) in ~PerformProbe()