Home | History | Annotate | Download | only in namespace

Lines Matching refs:Method

166  * PARAMETERS:  Info            - Method execution information block
189 * Also, ignore typecheck if warnings/errors if this method
218 /* Prevent any additional typechecking for this method */
231 * Node - Namespace node for the method/object
263 * If this object is not a control method, we can check if the ACPI
264 * spec requires that it be a method.
270 /* Object requires args, must be implemented as a method */
273 "Object (%s) must be a control method with %u arguments",
278 /* Object requires no args and no return value, must be a method */
281 "Object (%s) must be a control method "
290 * This is a control method.
291 * Check that the ASL/AML-defined parameter count for this method
299 AmlParamCount = Node->Object->Method.ParamCount;
324 * Node - Namespace node for the method/object
355 * against the count that is specified in the method/object.
362 "%u arguments were passed to a non-method ACPI object (%s)",
370 * This is a control method. Check the parameter count.
372 * argument count declared for the method in the ASL/AML.
377 * Note: Too many arguments will not cause the method to
378 * fail. However, the method will fail if there are too few
379 * arguments and the method attempts to use one of the missing ones.
381 AmlParamCount = Node->Object->Method.ParamCount;
387 "Caller passed %u, method requires %u",
394 "Caller passed %u, method requires %u",
404 * the method itself because what is important here is that the
406 * method was checked against the ACPI spec earlier.)