Lines Matching refs:method
251 char method[5]; in wmi_method_enable() local
258 snprintf(method, 5, "WE%02X", block->notify_id); in wmi_method_enable()
259 status = acpi_execute_simple_method(handle, method, enable); in wmi_method_enable()
289 char method[5] = "WM"; in wmi_evaluate_method() local
322 strncat(method, block->object_id, 2); in wmi_evaluate_method()
324 status = acpi_evaluate_object(handle, method, &input, out); in wmi_evaluate_method()
347 char method[5]; in wmi_query_block() local
388 strcpy(method, "WQ"); in wmi_query_block()
389 strncat(method, block->object_id, 2); in wmi_query_block()
391 status = acpi_evaluate_object(handle, method, &input, out); in wmi_query_block()
421 char method[5] = "WS"; in wmi_set_block() local
452 strncat(method, block->object_id, 2); in wmi_set_block()
454 return acpi_evaluate_object(handle, method, &input, NULL); in wmi_set_block()