Lines Matching full:probe
132 // Extract the D-Bus interfaces to probe from the JSON config files.
137 auto findProbe = it->find("Probe"); in filterProbeInterfaces()
140 std::cerr << "configuration file missing probe:\n " << *it << "\n"; in filterProbeInterfaces()
158 const std::string* probe = probeJson.get_ptr<const std::string*>(); in filterProbeInterfaces() local
159 if (probe == nullptr) in filterProbeInterfaces()
161 std::cerr << "Probe statement wasn't a string, can't parse"; in filterProbeInterfaces()
164 // Skip it if the probe cmd doesn't contain an interface. in filterProbeInterfaces()
165 if (probe::findProbeType(*probe)) in filterProbeInterfaces()
170 // syntax requires probe before first open brace in filterProbeInterfaces()
171 auto findStart = probe->find('('); in filterProbeInterfaces()
174 std::string interface = probe->substr(0, findStart); in filterProbeInterfaces()