Lines Matching refs:method
145 char method[5]; in wmi_method_enable() local
152 snprintf(method, 5, "WE%02X", block->notify_id); in wmi_method_enable()
153 status = acpi_execute_simple_method(handle, method, enable); in wmi_method_enable()
183 char method[5] = "WM"; in wmi_evaluate_method() local
216 strncat(method, block->object_id, 2); in wmi_evaluate_method()
218 status = acpi_evaluate_object(handle, method, &input, out); in wmi_evaluate_method()
241 char method[5]; in wmi_query_block() local
282 strcpy(method, "WQ"); in wmi_query_block()
283 strncat(method, block->object_id, 2); in wmi_query_block()
285 status = acpi_evaluate_object(handle, method, &input, out); in wmi_query_block()
315 char method[5] = "WS"; in wmi_set_block() local
346 strncat(method, block->object_id, 2); in wmi_set_block()
348 return acpi_evaluate_object(handle, method, &input, NULL); in wmi_set_block()