Home
last modified time | relevance | path

Searched refs:method (Results 201 – 225 of 1899) sorted by relevance

12345678910>>...76

/openbmc/openpower-pnor-code-mgmt/ubi/
H A Ditem_updater_ubi.cpp196 auto method = bus.new_method_call(SYSTEMD_BUSNAME, SYSTEMD_PATH, in removeReadOnlyPartition() local
198 method.append(serviceFile, "replace"); in removeReadOnlyPartition()
199 bus.call_noreply(method); in removeReadOnlyPartition()
207 auto method = bus.new_method_call(SYSTEMD_BUSNAME, SYSTEMD_PATH, in removeReadWritePartition() local
209 method.append(serviceFile, "replace"); in removeReadWritePartition()
210 bus.call_noreply(method); in removeReadWritePartition()
351 auto method = bus.new_method_call(SYSTEMD_BUSNAME, SYSTEMD_PATH, in deleteAll() local
353 method.append("obmc-flash-bios-cleanup.service", "replace"); in deleteAll()
354 bus.call_noreply(method); in deleteAll()
/openbmc/phosphor-fan-presence/control/
H A Dfanctl.cpp125 std::string method("RPM"); in loadDBusData() local
152 method = "PWM"; in loadDBusData()
176 return std::make_tuple(fanNames, pathMap, interfaces, method); in loadDBusData()
243 std::string ifaceTypeFromMethod(const std::string& method) in ifaceTypeFromMethod() argument
245 return (method == "RPM" ? "FanSpeed" : "FanPwm"); in ifaceTypeFromMethod()
259 auto& method = std::get<METHOD>(busData); in status() local
275 << "TARGET(" << method << ") FEEDBACKS(RPM) PRESENT" in status()
380 auto& method = std::get<METHOD>(busData); in get() local
385 cout << "TARGET SENSOR" << setw(11) << "TARGET(" << method in get()
431 auto& method = std::get<METHOD>(busData); in set() local
[all …]
/openbmc/phosphor-bmc-code-mgmt/mmc/
H A Dflash.cpp19 auto method = bus.new_method_call(SYSTEMD_BUSNAME, SYSTEMD_PATH, in flashWrite() local
22 method.append(serviceFile, "replace"); in flashWrite()
23 bus.call_noreply(method); in flashWrite()
/openbmc/intel-ipmi-oem/src/
H A Dsmbiosmdrv2handler.cpp67 sdbusplus::message_t method = in sdplusMdrv2GetProperty() local
69 method.append(mdrv2Interface, name); in sdplusMdrv2GetProperty()
71 sdbusplus::message_t reply = bus->call(method); in sdplusMdrv2GetProperty()
75 sdbusplus::message_t reply = bus->call(method); in sdplusMdrv2GetProperty()
94 sdbusplus::message_t method = in syncDirCommonData() local
97 method.append(idIndex, size); in syncDirCommonData()
101 sdbusplus::message_t reply = bus->call(method); in syncDirCommonData()
138 sdbusplus::message_t method = bus->new_method_call( in findDataId() local
143 method.append(info); in findDataId()
322 method.append(dirIndex); in mdr2GetDir()
[all …]
/openbmc/linux/Documentation/devicetree/bindings/arm/
H A Dpsci.yaml65 method:
66 description: The method of calling the PSCI firmware.
95 idle state nodes with entry-method property is set to "psci", as per
127 - method
149 method = "smc";
162 method = "smc";
179 method = "hvc";
197 enable-method = "psci";
206 enable-method = "psci";
244 method = "smc";
/openbmc/linux/arch/arm64/boot/dts/amlogic/
H A Dmeson-g12a.dtsi19 enable-method = "psci";
28 enable-method = "psci";
37 enable-method = "psci";
46 enable-method = "psci";
H A Dmeson-s4.dtsi19 enable-method = "psci";
26 enable-method = "psci";
33 enable-method = "psci";
40 enable-method = "psci";
54 method = "smc";
/openbmc/bmcweb/http/
H A Dhttp_request.hpp74 boost::beast::http::verb method() const in method() function
76 return req.method(); in method()
78 void method(boost::beast::http::verb verb) in method() function
80 req.method(verb); in method()
/openbmc/linux/arch/arm64/boot/dts/arm/
H A Djuno.dts32 method = "smc";
66 entry-method = "psci";
91 enable-method = "psci";
109 enable-method = "psci";
127 enable-method = "psci";
145 enable-method = "psci";
163 enable-method = "psci";
181 enable-method = "psci";
H A Djuno-r1.dts33 method = "smc";
67 entry-method = "psci";
92 enable-method = "psci";
109 enable-method = "psci";
126 enable-method = "psci";
143 enable-method = "psci";
160 enable-method = "psci";
177 enable-method = "psci";
H A Djuno-r2.dts33 method = "smc";
67 entry-method = "psci";
92 enable-method = "psci";
110 enable-method = "psci";
128 enable-method = "psci";
146 enable-method = "psci";
164 enable-method = "psci";
182 enable-method = "psci";
/openbmc/openpower-proc-control/
H A Dext_interface.cpp67 auto method = bus.new_method_call(rebootSvc.c_str(), REBOOTCOUNTER_PATH, in getBootCount() local
70 method.append(REBOOTCOUNTER_INTERFACE, "AttemptsLeft"); in getBootCount()
71 auto reply = bus.call(method); in getBootCount()
/openbmc/phosphor-bmc-code-mgmt/static/
H A Dflash.cpp40 auto method = bus.new_method_call(SYSTEMD_BUSNAME, SYSTEMD_PATH, in flashWrite() local
43 method.append(serviceFile, "replace"); in flashWrite()
44 bus.call_noreply(method); in flashWrite()
/openbmc/sdbusplus/include/sdbusplus/asio/
H A Dconnection.hpp120 const std::string& method, uint64_t timeout, in async_method_call_timed() argument
174 interf.c_str(), method.c_str()); in async_method_call_timed()
206 const std::string& interf, const std::string& method, in async_method_call() argument
210 objpath, interf, method, 0, a...); in async_method_call()
232 const std::string& interf, const std::string& method, in yield_method_call() argument
239 interf.c_str(), method.c_str()); in yield_method_call()
/openbmc/linux/drivers/acpi/acpica/
H A Dexcreate.c429 obj_desc->method.aml_start = aml_start; in acpi_ex_create_method()
430 obj_desc->method.aml_length = aml_length; in acpi_ex_create_method()
431 obj_desc->method.node = operand[0]; in acpi_ex_create_method()
438 obj_desc->method.param_count = (u8) in acpi_ex_create_method()
446 obj_desc->method.info_flags = ACPI_METHOD_SERIALIZED; in acpi_ex_create_method()
452 obj_desc->method.sync_level = (u8) in acpi_ex_create_method()
/openbmc/linux/arch/arm64/boot/dts/mediatek/
H A Dmt6797.dtsi20 method = "smc";
30 enable-method = "psci";
37 enable-method = "psci";
44 enable-method = "psci";
51 enable-method = "psci";
58 enable-method = "psci";
65 enable-method = "psci";
72 enable-method = "psci";
79 enable-method = "psci";
86 enable-method = "psci";
[all …]
/openbmc/linux/arch/arm/boot/dts/broadcom/
H A Dbcm6756.dtsi25 enable-method = "psci";
33 enable-method = "psci";
41 enable-method = "psci";
49 enable-method = "psci";
102 method = "smc";
/openbmc/linux/arch/arm64/boot/dts/cavium/
H A Dthunder2-99xx.dtsi28 enable-method = "psci";
35 enable-method = "psci";
42 enable-method = "psci";
49 enable-method = "psci";
55 method = "smc";
/openbmc/linux/arch/arm64/boot/dts/broadcom/bcmbca/
H A Dbcm4912.dtsi25 enable-method = "psci";
33 enable-method = "psci";
41 enable-method = "psci";
49 enable-method = "psci";
101 method = "smc";
H A Dbcm6858.dtsi25 enable-method = "psci";
33 enable-method = "psci";
41 enable-method = "psci";
49 enable-method = "psci";
92 method = "smc";
H A Dbcm6813.dtsi25 enable-method = "psci";
33 enable-method = "psci";
41 enable-method = "psci";
49 enable-method = "psci";
101 method = "smc";
/openbmc/linux/Documentation/devicetree/bindings/cpu/
H A Dcpu-topology.txt280 enable-method = "spin-table";
288 enable-method = "spin-table";
296 enable-method = "spin-table";
304 enable-method = "spin-table";
312 enable-method = "spin-table";
320 enable-method = "spin-table";
328 enable-method = "spin-table";
336 enable-method = "spin-table";
344 enable-method = "spin-table";
352 enable-method = "spin-table";
[all …]
/openbmc/phosphor-dbus-interfaces/yaml/xyz/openbmc_project/Certs/
H A DREADME.md25 - REST server should call the install method of the certificate application
84 Manager’s Certificate object upload interface. The Upload method internally
106 - Parent process registers child process PID and a callback method in the
107 sd_event_lopp so that callback method is invoked upon completion the CSR
109 - Callback method invoked creates a CSR object with the status of the CSR
204 - Bmcweb initiates an asynchronous call which invokes the "Install" method of
213 - Bmcweb invokes the Callback method with the status of the "Install" method
233 D-Bus method of the Certificate object asynchronously.
234 - Callback method will be passed to the bmcweb asynchronous method which will
235 called after completion of the D-Bus Replace method.
[all …]
/openbmc/u-boot/doc/device-tree-bindings/firmware/
H A Dlinaro,optee-tz.txt14 - method : The method of calling the OP-TEE Trusted OS. Permitted
29 method = "smc";
/openbmc/google-misc/subprojects/acpi-power-state-daemon/
H A Dacpi_power_state.cpp45 auto method = bus.new_method_call(systemdBusName, systemdPath, in startSystemdUnit() local
47 method.append(unit, "replace"); in startSystemdUnit()
48 bus.call(method); in startSystemdUnit()

12345678910>>...76