Lines Matching +full:boot +full:- +full:method
3 #include <systemd/sd-event.h>
6 #include <phosphor-logging/elog-errors.hpp>
7 #include <phosphor-logging/lg2.hpp>
10 #include <xyz/openbmc_project/State/Boot/Progress/server.hpp>
25 using BootProgress = sdbusplus::xyz::openbmc_project::State::Boot::server::
52 return mapperResponse.cbegin()->first; in getService()
68 auto method = bus.new_method_call(service.c_str(), objectPath.c_str(), in getProperty() local
70 method.append(interface, propertyName); in getProperty()
72 auto reply = bus.call(method); in getProperty()
81 * @param[in] objectPath - Name of the object containing the property
82 * @param[in] interface - Interface name containing the property
83 * @param[in] propertyName - Property name
84 * @param[in] value - Property value
101 auto method = bus.new_method_call(service.c_str(), objectPath.c_str(), in setProperty() local
103 method.append(interface, propertyName, varValue); in setProperty()
105 bus.call(method); in setProperty()
121 auto method = bus.new_method_call(MAPPER_BUSNAME, MAPPER_OBJ_PATH, in getSubtreePaths() local
123 method.append(path, 0, interfaces); in getSubtreePaths()
125 auto reply = bus.call(method); in getSubtreePaths()
144 auto method = bus.new_method_call(MAPPER_BUSNAME, MAPPER_OBJ_PATH, in getServiceUsingSubTree() local
146 method.append(path, 0, std::vector{interface}); in getServiceUsingSubTree()
148 auto mapperResponseMsg = bus.call(method); in getServiceUsingSubTree()
158 path = rspObjects.begin()->first; in getServiceUsingSubTree()
159 if (!rspObjects.begin()->second.empty()) in getServiceUsingSubTree()
161 service = rspObjects.begin()->second.begin()->first; in getServiceUsingSubTree()
187 auto method = in getStateValue() local
191 method.append(intf, state); in getStateValue()
193 auto reply = bus.call(method); in getStateValue()
201 lg2::error("D-Bus call exception, OBJPATH({PATH}), " in getStateValue()
223 "xyz.openbmc_project.State.Boot.Progress"; in getBootProgress()
226 bootProgessStage = sdbusplus::xyz::openbmc_project::State::Boot::server:: in getBootProgress()
267 if ((i % 16 == 15) || (i == (dump_length - 1))) in hex_dump()