Lines Matching +full:entry +full:- +full:method

7 #include <phosphor-logging/elog-errors.hpp>
8 #include <phosphor-logging/elog.hpp>
9 #include <phosphor-logging/log.hpp>
44 auto method = this->bus.new_method_call(SYSTEMD_SERVICE, SYSTEMD_OBJ_PATH, in subscribeToSystemdSignals() local
48 this->bus.call_noreply(method); in subscribeToSystemdSignals()
55 // If an Activation attempt fails, the Unsubscribe method is not in subscribeToSystemdSignals()
57 // Activation is re-attempted. in subscribeToSystemdSignals()
62 entry("ERROR=%s", e.what())); in subscribeToSystemdSignals()
70 auto method = this->bus.new_method_call(SYSTEMD_SERVICE, SYSTEMD_OBJ_PATH, in unsubscribeFromSystemdSignals() local
72 this->bus.call_noreply(method); in unsubscribeFromSystemdSignals()
78 -> RequestedActivations in requestedActivation()
101 auto method = this->bus.new_method_call(MAPPER_BUSNAME, MAPPER_PATH, in deleteImageManagerObject() local
104 method.append(path); in deleteImageManagerObject()
105 method.append(std::vector<std::string>({deleteInterface})); in deleteImageManagerObject()
111 auto mapperResponseMsg = bus.call(method); in deleteImageManagerObject()
116 entry("VERSIONPATH=%s", path.c_str())); in deleteImageManagerObject()
123 entry("VERSIONPATH=%s", path.c_str())); in deleteImageManagerObject()
127 // We need to find the phosphor-software-manager's version service in deleteImageManagerObject()
144 method = this->bus.new_method_call(versionService.c_str(), path.c_str(), in deleteImageManagerObject()
148 bus.call(method); in deleteImageManagerObject()
159 entry("ERROR=%s", e.what()), in deleteImageManagerObject()
160 entry("PATH=%s", path.c_str())); in deleteImageManagerObject()
178 auto method = bus.new_method_call(service.c_str(), applyTimeObjPath, in checkApplyTimeImmediate() local
180 method.append(applyTimeIntf, applyTimeProp); in checkApplyTimeImmediate()
184 auto reply = bus.call(method); in checkApplyTimeImmediate()
197 entry("ERROR=%s", e.what())); in checkApplyTimeImmediate()
213 auto method = bus.new_method_call(service.c_str(), hostStateObjPath, in rebootHost() local
216 method.append(hostStateIntf, hostStateRebootProp, hostReboot); in rebootHost()
220 auto reply = bus.call(method); in rebootHost()
227 entry("ERROR=%s", e.what())); in rebootHost()
275 auto method = bus.new_method_call(fieldModeSvc.c_str(), FIELDMODE_PATH, in fieldModeEnabled() local
278 method.append(FIELDMODE_INTERFACE, "FieldModeEnabled"); in fieldModeEnabled()
284 auto reply = bus.call(method); in fieldModeEnabled()