Home
last modified time | relevance | path

Searched full:method (Results 1 – 25 of 2826) sorted by relevance

12345678910>>...114

/openbmc/linux/drivers/acpi/acpica/
Ddsmethod.c
Dpsxface.c
/openbmc/phosphor-dbus-monitor/src/
H A Dmethod.hpp25 * @tparam MethodArgs - DBus method argument types.
31 const std::string& iface, const std::string& method, in op()
36 DBusInterface::callMethodNoReply(bus, path, iface, method, in op()
42 "Unable to call DBus method: {ERROR}. {BUS}, {PATH}, {INTF}, {METHOD}", in op()
43 "ERROR", e, "BUS", bus, "PATH", path, "INTF", iface, "METHOD", in op()
44 method); in op()
51 * @brief Invoke DBus method callback implementation.
53 * The method callback invokes the client supplied DBus method.
66 Callback(), bus(b), path(p), interface(i), method(m) in MethodBase()
76 const std::string& method; member in phosphor::dbus::monitoring::MethodBase
[all …]
/openbmc/skeleton/libopenbmc_intf/
H A Dopenbmc_intf.xml8 <method name="setCoolingZone">
10 </method>
11 <method name="getSpeed">
13 </method>
14 <method name="setSpeed">
16 </method>
26 <method name="init"/>
27 <method name="getValue">
29 </method>
30 <method name="setValue">
[all …]
/openbmc/phosphor-fan-presence/control/json/
H A Dprofile.cpp32 // String key must be in all lowercase for method lookup
43 if (!jsonObj.contains("method") || !jsonObj["method"].contains("name")) in setActive()
45 // Log error on missing profile method in setActive()
46 lg2::error("Missing required profile method", "JSON", jsonObj.dump()); in setActive()
47 throw std::runtime_error("Missing required profile method"); in setActive()
49 // The method to use in determining if the profile is active in setActive()
50 auto method = jsonObj["method"]["name"].get<std::string>(); in setActive() local
51 std::transform(method.begin(), method.end(), method.begin(), tolower); in setActive()
52 auto handler = _methods.find(method); in setActive()
55 // Call method for determining profile's active state in setActive()
[all …]
/openbmc/linux/Documentation/firmware-guide/acpi/
Dmethod-tracing.rst
/openbmc/qemu/hw/acpi/
H A Dmemory_hotplug.c98 case 0x10: /* node proximity for _PXM method */ in acpi_memory_hotplug_read()
340 Aml *method; in build_memory_hotplug_aml() local
437 method = aml_method("_STA", 0, AML_NOTSERIALIZED); in build_memory_hotplug_aml()
442 aml_append(method, ifctx); in build_memory_hotplug_aml()
444 aml_append(method, aml_return(aml_int(0xB))); in build_memory_hotplug_aml()
445 aml_append(dev_container, method); in build_memory_hotplug_aml()
449 method = aml_method(MEMORY_SLOT_SCAN_METHOD, 0, AML_NOTSERIALIZED); in build_memory_hotplug_aml()
461 aml_append(method, ifctx); in build_memory_hotplug_aml()
463 aml_append(method, aml_store(zero, idx)); in build_memory_hotplug_aml()
464 aml_append(method, aml_acquire(ctrl_lock, 0xFFFF)); in build_memory_hotplug_aml()
[all …]
H A Dcpu_hotplug.c127 Aml *method; in build_legacy_cpu_hotplug_aml() local
145 * _MAT method - creates an madt apic buffer in build_legacy_cpu_hotplug_aml()
151 method = aml_method(CPU_MAT_METHOD, 2, AML_NOTSERIALIZED); in build_legacy_cpu_hotplug_aml()
152 aml_append(method, in build_legacy_cpu_hotplug_aml()
154 aml_append(method, in build_legacy_cpu_hotplug_aml()
157 aml_append(method, aml_store(cpu_id, aml_index(madt, aml_int(2)))); in build_legacy_cpu_hotplug_aml()
158 aml_append(method, aml_store(apic_id, aml_index(madt, aml_int(3)))); in build_legacy_cpu_hotplug_aml()
159 aml_append(method, aml_store(cpu_on, aml_index(madt, aml_int(4)))); in build_legacy_cpu_hotplug_aml()
160 aml_append(method, aml_return(madt)); in build_legacy_cpu_hotplug_aml()
161 aml_append(sb_scope, method); in build_legacy_cpu_hotplug_aml()
[all …]
/openbmc/u-boot/arch/arm/dts/
H A Dthunderx-88xx.dtsi17 method = "smc";
28 enable-method = "psci";
34 enable-method = "psci";
40 enable-method = "psci";
46 enable-method = "psci";
52 enable-method = "psci";
58 enable-method = "psci";
64 enable-method = "psci";
70 enable-method = "psci";
76 enable-method = "psci";
[all …]
/openbmc/sdbusplus/tools/sdbusplus/templates/
H A Dmethod.prototype.hpp.mako5 /** @brief Implementation for ${ method.name }
6 * ${ method.description.strip() }
7 % if len(method.parameters) != 0:
9 % for p in method.parameters:
13 % if len(method.returns) != 0:
15 % for r in method.returns:
21 virtual ${method.cpp_return_type(interface)} ${ method.camelCase }(
22 ${ method.get_parameters_str(interface) }) = 0;
27 /** @brief sd-bus callback for ${ method.name }
29 static int _callback_${ method.CamelCase }(
[all …]
H A Dmethod.client.hpp.mako1 /** @brief ${ method.name }
2 * ${ method.description.strip() }
3 % if len(method.parameters) != 0:
5 % for p in method.parameters:
9 % if len(method.returns) != 0:
11 % for r in method.returns:
17 auto ${method.snake_case}(\
18 % if len(method.parameters) != 0:
19 ${method.get_parameters_str(interface, join_str=", ")}\
25 ${method.returns_as_list(interface)}>(context(), "${method.name}"\
[all …]
H A Dmethod.server.vtable.cpp.mako1 vtable::method("${method.name}",
2 details::${interface.classname}::_param_${ method.CamelCase }.data(),
3 details::${interface.classname}::_return_${ method.CamelCase }.data(),
4 % if method.cpp_flags:
5 _callback_${method.CamelCase},
6 ${method.cpp_flags}\
8 _callback_${method.CamelCase}\
/openbmc/phosphor-bmc-code-mgmt/bmc/ubi/
H A Ditem_updater_helper.cpp23 auto method = bus.new_method_call(SYSTEMD_BUSNAME, SYSTEMD_PATH, in setEntry() local
25 method.append(serviceFile, "replace"); in setEntry()
26 bus.call_noreply(method); in setEntry()
33 auto method = bus.new_method_call(SYSTEMD_BUSNAME, SYSTEMD_PATH, in clearEntry() local
35 method.append(serviceFile, "replace"); in clearEntry()
36 bus.call_noreply(method); in clearEntry()
42 auto method = bus.new_method_call(SYSTEMD_BUSNAME, SYSTEMD_PATH, in cleanup() local
44 method.append("obmc-flash-bmc-cleanup.service", "replace"); in cleanup()
45 bus.call_noreply(method); in cleanup()
59 auto method = bus.new_method_call(SYSTEMD_BUSNAME, SYSTEMD_PATH, in removeVersion() local
[all …]
/openbmc/linux/arch/arm/mm/
Dproc-v7-bugs.c
/openbmc/u-boot/arch/x86/include/asm/acpi/
H A Dirqlinks.asl28 /* Disable method */
29 Method(_DIS, 0, Serialized)
41 Method(_CRS, 0, Serialized)
59 Method(_SRS, 1, Serialized)
71 Method(_STA, 0, Serialized)
86 /* Disable method */
87 Method(_DIS, 0, Serialized)
99 Method(_CRS, 0, Serialized)
117 Method(_SRS, 1, Serialized)
129 Method(_STA, 0, Serialized)
[all …]
/openbmc/openbmc/meta-openembedded/meta-oe/dynamic-layers/meta-python/recipes-connectivity/thingsboard-gateway/thingsboard-gateway/
H A Dsnmp.json13 "method": "get", string
19 "method": "multiget", string
28 "method": "getnext", string
34 "method": "multiwalk", string
42 "method": "bulkwalk", string
50 "method": "bulkget", string
66 "method": "walk", string
71 "method": "table", string
78 "method": "set", string
83 "method": "multiset", string
[all …]
/openbmc/qemu/hw/display/
H A Dacpi-vga.c9 Aml *method; in build_vga_aml() local
15 method = aml_method("_S1D", 0, AML_NOTSERIALIZED); in build_vga_aml()
16 aml_append(method, aml_return(aml_int(0))); in build_vga_aml()
17 aml_append(scope, method); in build_vga_aml()
19 method = aml_method("_S2D", 0, AML_NOTSERIALIZED); in build_vga_aml()
20 aml_append(method, aml_return(aml_int(0))); in build_vga_aml()
21 aml_append(scope, method); in build_vga_aml()
23 method = aml_method("_S3D", 0, AML_NOTSERIALIZED); in build_vga_aml()
24 aml_append(method, aml_return(aml_int(s3d))); in build_vga_aml()
25 aml_append(scope, method); in build_vga_aml()
/openbmc/openbmc/poky/bitbake/lib/hashserv/
H A Dsqlite.py16 ("method", "TEXT NOT NULL", "UNIQUE"),
25 ("method", "TEXT NOT NULL", "UNIQUE"),
162 "CREATE INDEX IF NOT EXISTS taskhash_lookup_v4 ON unihashes_v3 (method, taskhash)"
168 "CREATE INDEX IF NOT EXISTS outhash_lookup_v3 ON outhashes_v2 (method, outhash)"
183 INSERT INTO unihashes_v3 (id, method, unihash, taskhash, gc_mark)
184 SELECT id, method, unihash, taskhash, '' FROM unihashes_v2
244 async def get_unihash_by_taskhash_full(self, method, taskhash): argument
249 …INNER JOIN unihashes_v3 ON unihashes_v3.method=outhashes_v2.method AND unihashes_v3.taskhash=outha…
250 WHERE outhashes_v2.method=:method AND outhashes_v2.taskhash=:taskhash
255 "method": method,
[all …]
H A Dsqlalchemy.py44 method = Column(Text, nullable=False) variable in UnihashesV3
50 UniqueConstraint("method", "taskhash"),
51 Index("taskhash_lookup_v4", "method", "taskhash"),
59 method = Column(Text, nullable=False) variable in OuthashesV2
71 UniqueConstraint("method", "taskhash", "outhash"),
72 Index("outhash_lookup_v3", "method", "outhash"),
106 method = Column(Text, nullable=False) variable in UnihashesV2
111 UniqueConstraint("method", "taskhash"),
112 Index("taskhash_lookup_v3", "method", "taskhash"),
146 ["id", "method", "unihash", "taskhash", "gc_mark"],
[all …]
/openbmc/pldm/oem/ibm/libpldmresponder/
H A Dinband_code_update.hpp62 /* @brief Method to return the current boot side
66 /* @brief Method to return the next boot side
70 /* @brief Method to set the current boot side or
77 /* @brief Method to set the next boot side
83 /* @brief Method to set the running and non-running
88 /* @brief Method to return the newly upoaded image id in
96 /* @brief Method to set the oem platform handler in CodeUpdate class */
99 /* @brief Method to check whether code update is
108 /* @brief Method to indicate whether code update
117 /** @brief Method to clear contents the LID staging directory that contains
[all …]
/openbmc/bmcweb/redfish-core/schema/dmtf/json-schema/
H A DConnectionMethod.v1_2_0.json36 …The `ConnectionMethod` schema describes the protocol, provider, or other method used to communicat…
37 …"longDescription": "This resource shall represent a connection method for a Redfish implementation…
79 "description": "The type of connection method.",
80 … "longDescription": "This property shall contain an identifier of the connection method.",
84 "description": "The variant of connection method.",
85 … "This property shall contain an additional identifier of the connection method. This property sh…
130 "description": "The tunneling protocol used for this connection method.",
131 …escription": "This property shall contain the tunneling protocol used for this connection method.",
156 "IPMI15": "IPMI 1.5 connection method.",
157 "IPMI20": "IPMI 2.0 connection method.",
[all …]
/openbmc/rest-dbus/resources/
H A Ddbus.js172 return '<span class="method-arg">' +
173 '<span class="method-arg-type">' + format_type(arg.type) +
175 '<span class="method-arg-name">' + arg.name + '</span></span>';
178 function format_method(method) argument
182 for (var i in method.args) {
183 var arg = method.args[i];
190 return '<span class="method">' +
191 '<span class="method-name">' + method.name + "</span>" +
192 '<span class="method-args">(' + in_args.join(', ') + ')</span>' +
194 '<span class="method-args">' + out_args.join(', ') + '</span>' +
[all …]
/openbmc/u-boot/arch/x86/include/asm/arch-tangier/acpi/
H A Dsouthcluster.asl64 Method (_CRS, 0, Serialized)
69 Method (_OSC, 4)
92 Method (_STA)
97 Method (_PS3, 0, NotSerialized)
101 Method (_PS0, 0, NotSerialized)
122 Method (_STA)
127 Method (_RMV, 0, NotSerialized)
132 Method (_PS3, 0, NotSerialized)
141 Method (_PS0, 0, NotSerialized)
157 Method (_STA, 0, NotSerialized)
[all …]
/openbmc/phosphor-led-manager/
H A Dutils.cpp52 auto method = bus.new_method_call(service.c_str(), objectPath.c_str(), in getAllProperties() local
54 method.append(interface); in getAllProperties()
56 auto reply = bus.call(method); in getAllProperties()
76 auto method = bus.new_method_call(service.c_str(), objectPath.c_str(), in getProperty() local
78 method.append(interface, propertyName); in getProperty()
80 auto reply = bus.call(method); in getProperty()
98 auto method = bus.new_method_call(service.c_str(), objectPath.c_str(), in setProperty() local
100 method.append(interface.c_str(), propertyName.c_str(), value); in setProperty()
102 bus.call_noreply(method); in setProperty()
112 auto method = bus.new_method_call(mapperBusName, mapperObjPath, mapperIntf, in getSubTreePaths() local
[all …]
/openbmc/qemu/ui/
H A Ddbus-display1.xml73 <method name="RegisterListener">
81 </method>
94 <method name="SetUIInfo">
101 </method>
174 <method name="Press">
176 </method>
184 <method name="Release">
186 </method>
226 <method name="Press">
228 </method>
[all …]

12345678910>>...114