Home
last modified time | relevance | path

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

12345678910>>...162

/openbmc/linux/drivers/acpi/acpica/
H A Ddsmethod.c4 * Module Name: dsmethod - Parser/Interpreter interface - control method parsing
34 * PARAMETERS: node - Namespace Node of the method
35 * obj_desc - Method object attached to node
39 * DESCRIPTION: Parse a control method AML to scan for control methods that
43 * there is only a problem if the method actually blocks during execution.
46 * detect whether a method will block or not, so we simply mark all suspicious
50 * control method.
65 "Method auto-serialization parse [%4.4s] %p\n", in acpi_ds_auto_serialize_method()
68 /* Create/Init a root op for the method parse tree */ in acpi_ds_auto_serialize_method()
70 op = acpi_ps_alloc_op(AML_METHOD_OP, obj_desc->method.aml_start); in acpi_ds_auto_serialize_method()
[all …]
H A Dpsxface.c37 * method execution
65 * PARAMETERS: info - Method info block, contains:
66 * node - Method Node to execute
67 * obj_desc - Method object
68 * parameters - List of parameters to pass to the method,
71 * return_object - Where to put method's return value (if
74 * return_object - Where to put method's return value (if
80 * DESCRIPTION: Execute a control method
96 /* Validate the Info and method Node */ in acpi_ps_execute_method()
102 /* Init for new method, wait on concurrency semaphore */ in acpi_ps_execute_method()
[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-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/linux/Documentation/firmware-guide/acpi/
H A Dmethod-tracing.rst15 method tracing facility.
20 ACPICA provides method tracing capability. And two functions are
33 But when the particular layer/level is applied to the control method
37 logs when the control method evaluation is started, and disable the
38 detailed logging when the control method evaluation is stopped.
52 control method is being evaluated::
58 # echo "method" > /sys/module/acpi/parameters/trace_state
61 control method is being evaluated for the first time::
67 # echo "method-once" > /sys/module/acpi/parameters/trace_state
74 Full path of a control method that can be found in the ACPI namespace.
[all …]
H A Dmethod-customizing.rst4 Linux ACPI Custom Control Method How To
14 1. override an existing method which may not work correctly,
16 2. insert a completely new method in order to create a missing
17 method such as _OFF, _ON, _STA, _INI, etc.
20 control method rather than override the entire DSDT, because kernel
25 - Only ACPI METHOD can be overridden, any other object types like
29 - The same ACPI control method can be overridden for many times,
38 1. override an existing method
43 c) rewrite the ASL code of the method and save it in a new file,
45 Here is an example of a customized \_SB._AC._PSR method::
[all …]
/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.c128 Aml *method; in build_legacy_cpu_hotplug_aml() local
146 * _MAT method - creates an madt apic buffer in build_legacy_cpu_hotplug_aml()
152 method = aml_method(CPU_MAT_METHOD, 2, AML_NOTSERIALIZED); in build_legacy_cpu_hotplug_aml()
153 aml_append(method, in build_legacy_cpu_hotplug_aml()
155 aml_append(method, in build_legacy_cpu_hotplug_aml()
158 aml_append(method, aml_store(cpu_id, aml_index(madt, aml_int(2)))); in build_legacy_cpu_hotplug_aml()
159 aml_append(method, aml_store(apic_id, aml_index(madt, aml_int(3)))); in build_legacy_cpu_hotplug_aml()
160 aml_append(method, aml_store(cpu_on, aml_index(madt, aml_int(4)))); in build_legacy_cpu_hotplug_aml()
161 aml_append(method, aml_return(madt)); in build_legacy_cpu_hotplug_aml()
162 aml_append(sb_scope, method); in build_legacy_cpu_hotplug_aml()
[all …]
H A Dcpu.c348 Aml *method; in build_cpus_aml() local
412 method = aml_method("_INI", 0, AML_SERIALIZED); in build_cpus_aml()
417 aml_append(method, aml_store(zero, aml_name(CPU_SELECTOR))); in build_cpus_aml()
418 aml_append(cpu_ctrl_dev, method); in build_cpus_aml()
439 method = aml_method(CPU_NOTIFY_METHOD, 2, AML_NOTSERIALIZED); in build_cpus_aml()
449 aml_append(method, ifctx); in build_cpus_aml()
451 aml_append(cpus_dev, method); in build_cpus_aml()
453 method = aml_method(CPU_STS_METHOD, 1, AML_SERIALIZED); in build_cpus_aml()
458 aml_append(method, aml_acquire(ctrl_lock, 0xFFFF)); in build_cpus_aml()
459 aml_append(method, aml_store(idx, cpu_selector)); in build_cpus_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/phosphor-fan-presence/control/json/
H A Dprofile.cpp33 // String key must be in all lowercase for method lookup
44 if (!jsonObj.contains("method") || !jsonObj["method"].contains("name")) in setActive()
46 // Log error on missing profile method in setActive()
47 log<level::ERR>("Missing required profile method", in setActive()
49 throw std::runtime_error("Missing required profile method"); in setActive()
51 // The method to use in determining if the profile is active in setActive()
52 auto method = jsonObj["method"]["name"].get<std::string>(); in setActive() local
53 std::transform(method.begin(), method.end(), method.begin(), tolower); in setActive()
54 auto handler = _methods.find(method); in setActive()
57 // Call method for determining profile's active state in setActive()
[all …]
/openbmc/linux/arch/arm64/boot/dts/cavium/
H A Dthunder-88xx.dtsi58 method = "smc";
69 enable-method = "psci";
75 enable-method = "psci";
81 enable-method = "psci";
87 enable-method = "psci";
93 enable-method = "psci";
99 enable-method = "psci";
105 enable-method = "psci";
111 enable-method = "psci";
117 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 …]
/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/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/linux/arch/arm/mm/
H A Dproc-v7-bugs.c66 static unsigned int spectre_v2_install_workaround(unsigned int method) in spectre_v2_install_workaround() argument
74 switch (method) { in spectre_v2_install_workaround()
109 static unsigned int spectre_v2_install_workaround(unsigned int method) in spectre_v2_install_workaround() argument
119 unsigned int state, method = 0; in cpu_v7_spectre_v2_init() local
129 method = SPECTRE_V2_METHOD_BPIALL; in cpu_v7_spectre_v2_init()
135 method = SPECTRE_V2_METHOD_ICIALLU; in cpu_v7_spectre_v2_init()
161 method = SPECTRE_V2_METHOD_HVC; in cpu_v7_spectre_v2_init()
165 method = SPECTRE_V2_METHOD_SMC; in cpu_v7_spectre_v2_init()
175 state = spectre_v2_install_workaround(method); in cpu_v7_spectre_v2_init()
177 spectre_v2_update_state(state, method); in cpu_v7_spectre_v2_init()
[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/openbmc/poky/bitbake/lib/hashserv/
H A Dsqlite.py15 ("method", "TEXT NOT NULL", "UNIQUE"),
24 ("method", "TEXT NOT NULL", "UNIQUE"),
145 "CREATE INDEX IF NOT EXISTS taskhash_lookup_v4 ON unihashes_v3 (method, taskhash)"
151 "CREATE INDEX IF NOT EXISTS outhash_lookup_v3 ON outhashes_v2 (method, outhash)"
166 INSERT INTO unihashes_v3 (id, method, unihash, taskhash, gc_mark)
167 SELECT id, method, unihash, taskhash, '' FROM unihashes_v2
227 async def get_unihash_by_taskhash_full(self, method, taskhash): argument
232 …INNER JOIN unihashes_v3 ON unihashes_v3.method=outhashes_v2.method AND unihashes_v3.taskhash=outha…
233 WHERE outhashes_v2.method=:method AND outhashes_v2.taskhash=:taskhash
238 "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/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 …]
/openbmc/pldm/oem/ibm/libpldmresponder/
H A Dinband_code_update.hpp44 /* @brief Method to return the current boot side
48 /* @brief Method to return the next boot side
52 /* @brief Method to set the current boot side or
59 /* @brief Method to set the next boot side
65 /* @brief Method to set the running and non-running
70 /* @brief Method to return the newly upoaded image id in
78 /* @brief Method to set the oem platform handler in CodeUpdate class */
81 /* @brief Method to check whether code update is
90 /* @brief Method to indicate whether code update
99 /** @brief Method to clear contents the LID staging directory that contains
[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/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/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 …]

12345678910>>...162