Lines Matching full:argument
28 * PARAMETERS: op - Get an argument for this op
29 * argn - Nth argument to get
31 * RETURN: The argument (as an Op object). NULL if argument does not exist
33 * DESCRIPTION: Get the specified op's argument.
60 /* Check if this opcode requires argument sub-objects */ in acpi_ps_get_arg()
64 /* Has no linked argument objects */ in acpi_ps_get_arg()
69 /* Get the requested argument object */ in acpi_ps_get_arg()
84 * PARAMETERS: op - Append an argument to this Op.
85 * arg - Argument Op to append
89 * DESCRIPTION: Append an argument to an op's argument list (a NULL arg is OK)
117 /* Check if this opcode requires argument sub-objects */ in acpi_ps_append_arg()
121 /* Has no linked argument objects */ in acpi_ps_append_arg()
126 /* Append the argument to the linked argument list */ in acpi_ps_append_arg()
130 /* Append to existing argument list */ in acpi_ps_append_arg()
138 /* No argument list, this will be the first argument */ in acpi_ps_append_arg()
182 /* Look for an argument or child */ in acpi_ps_get_depth_next()