Lines Matching refs:method
223 char method[5]; in wmi_method_enable() local
230 snprintf(method, 5, "WE%02X", block->notify_id); in wmi_method_enable()
231 status = acpi_execute_simple_method(handle, method, enable); in wmi_method_enable()
261 char method[5] = "WM"; in wmi_evaluate_method() local
294 strncat(method, block->object_id, 2); in wmi_evaluate_method()
296 status = acpi_evaluate_object(handle, method, &input, out); in wmi_evaluate_method()
319 char method[5]; in wmi_query_block() local
360 strcpy(method, "WQ"); in wmi_query_block()
361 strncat(method, block->object_id, 2); in wmi_query_block()
363 status = acpi_evaluate_object(handle, method, &input, out); in wmi_query_block()
393 char method[5] = "WS"; in wmi_set_block() local
424 strncat(method, block->object_id, 2); in wmi_set_block()
426 return acpi_evaluate_object(handle, method, &input, NULL); in wmi_set_block()