Lines Matching full:match
12 #include <sdbusplus/bus/match.hpp>
30 std::smatch match; in findFiles() local
34 if (std::regex_search(path, match, search)) in findFiles()
48 std::smatch match; in findFiles() local
65 if (std::regex_search(path, match, search)) in findFiles()
112 /// Default match JSON/DBus match implementation
117 /// \param probe the probe statement to match against
120 static bool match(const nlohmann::json& probe, const T& value) in match() function
132 /// \param probe the probe statement to match against
135 static bool match(const nlohmann::json& probe, const std::string& value) in match() function
148 << " will never match"; in match()
152 // Skip calling nlohmann here, since it will never match a non-string in match()
170 return MatchProbe<T>::match(probeRef, dbusValue); in operator ()()