Lines Matching full:method

22  * PARAMETERS:  info            - Method execution information block
41 * Also, ignore typecheck if warnings/errors if this method in acpi_ns_check_argument_types()
70 /* Prevent any additional typechecking for this method */ in acpi_ns_check_argument_types()
82 * node - Namespace node for the method/object
111 * If this object is not a control method, we can check if the ACPI in acpi_ns_check_acpi_compliance()
112 * spec requires that it be a method. in acpi_ns_check_acpi_compliance()
117 /* Object requires args, must be implemented as a method */ in acpi_ns_check_acpi_compliance()
121 "Object (%s) must be a control method with %u arguments", in acpi_ns_check_acpi_compliance()
128 /* Object requires no args and no return value, must be a method */ in acpi_ns_check_acpi_compliance()
132 "Object (%s) must be a control method " in acpi_ns_check_acpi_compliance()
142 * This is a control method. in acpi_ns_check_acpi_compliance()
143 * Check that the ASL/AML-defined parameter count for this method in acpi_ns_check_acpi_compliance()
151 aml_param_count = node->object->method.param_count; in acpi_ns_check_acpi_compliance()
175 * node - Namespace node for the method/object
202 * against the count that is specified in the method/object. in acpi_ns_check_argument_count()
208 "%u arguments were passed to a non-method ACPI object (%s)", in acpi_ns_check_argument_count()
218 * This is a control method. Check the parameter count. in acpi_ns_check_argument_count()
220 * argument count declared for the method in the ASL/AML. in acpi_ns_check_argument_count()
225 * Note: Too many arguments will not cause the method to in acpi_ns_check_argument_count()
226 * fail. However, the method will fail if there are too few in acpi_ns_check_argument_count()
227 * arguments and the method attempts to use one of the missing ones. in acpi_ns_check_argument_count()
229 aml_param_count = node->object->method.param_count; in acpi_ns_check_argument_count()
235 "Caller passed %u, method requires %u", in acpi_ns_check_argument_count()
242 "Caller passed %u, method requires %u", in acpi_ns_check_argument_count()
253 * the method itself because what is important here is that the in acpi_ns_check_argument_count()
255 * method was checked against the ACPI spec earlier.) in acpi_ns_check_argument_count()