Lines Matching +full:entry +full:- +full:method
5 #include <phosphor-logging/log.hpp>
27 return -1; in compare()
36 return -1; in compare()
45 return -1; in compare()
60 // Match for vX.Y.Z or v-X.Y.Z in parse()
61 std::regex regex{"v-?([0-9]+)\\.([0-9]+)\\.([0-9]+)", std::regex::extended}; in parse()
65 // Match for vX.Y or v-X.Y in parse()
66 std::regex regexShort{"v-?([0-9]+)\\.([0-9]+)", std::regex::extended}; in parse()
70 entry("VERSION=%s", versionStr.c_str())); in parse()
86 auto method = bus.new_method_call(BUSNAME_UPDATER, SOFTWARE_OBJPATH, in getFunctionalVersion() local
88 method.append(ASSOCIATIONS_INTERFACE, "Associations"); in getFunctionalVersion()
89 auto response = bus.call(method); in getFunctionalVersion()
99 entry("ERROR=%s", e.what()), in getFunctionalVersion()
100 entry("SIGNATURE=%s", response.get_signature())); in getFunctionalVersion()
115 method = bus.new_method_call(BUSNAME_UPDATER, path.c_str(), in getFunctionalVersion()
117 method.append(VERSION_IFACE, "Version"); in getFunctionalVersion()
118 response = bus.call(method); in getFunctionalVersion()
130 entry("ERROR=%s", e.what()), in getFunctionalVersion()
131 entry("SIGNATURE=%s", response.get_signature())); in getFunctionalVersion()
160 // In order to handle non-continuous multiple min versions, need to compare in verify()
199 entry("MIN_VERSION=%s", tmpMin.c_str()), in verify()
200 entry("ACTUAL_VERSION=%s", actual.c_str()), in verify()
201 entry("VERSION_PURPOSE=%s", in verify()