Lines Matching refs:method

36  * DESCRIPTION: Set a breakpoint in a control method at the specified
50 acpi_os_printf("There is no method currently executing\n");
78 * DESCRIPTION: Set a breakpoint in a control method at the specified
87 acpi_os_printf("There is no method currently executing\n");
104 * DESCRIPTION: Set a local or argument for the running control method.
151 acpi_os_printf("There is no method currently executing\n");
168 /* Set a method argument */
191 /* Set a method local */
241 acpi_os_printf("There is no method currently executing\n");
256 * PARAMETERS: name - Name of control method
271 struct acpi_namespace_node *method;
273 method = acpi_db_convert_to_node(name);
274 if (!method) {
278 if (method->type != ACPI_TYPE_METHOD) {
279 ACPI_ERROR((AE_INFO, "%s (%s): Object must be a control method",
280 name, acpi_ut_get_type_name(method->type)));
284 obj_desc = method->object;
286 op = acpi_ps_create_scope_op(obj_desc->method.aml_start);
299 obj_desc->method.aml_start,
300 obj_desc->method.aml_length, NULL,
306 status = acpi_ut_allocate_owner_id(&obj_desc->method.owner_id);
311 walk_state->owner_id = obj_desc->method.owner_id;
315 status = acpi_ds_scope_stack_push(method, method->type, walk_state);
320 /* Parse the entire method AML including deferred operators */
332 /* Now we can disassemble the method */
342 acpi_ns_delete_namespace_subtree(method);
343 acpi_ns_delete_namespace_by_owner(obj_desc->method.owner_id);
344 acpi_ut_release_owner_id(&obj_desc->method.owner_id);
377 /* Get the object info for number of method parameters */
405 /* Do the actual method execution */
426 /* Ignore status from method execution */
519 /* Ignore status from method execution */