ReactOS 0.4.16-dev-336-gb667d82
|
#include "acpi.h"
#include "accommon.h"
#include "acinterp.h"
#include "acparser.h"
#include "amlcode.h"
Go to the source code of this file.
Macros | |
#define | _COMPONENT ACPI_EXECUTER |
Functions | |
static BOOLEAN | AcpiExDoMatch (UINT32 MatchOp, ACPI_OPERAND_OBJECT *PackageObj, ACPI_OPERAND_OBJECT *MatchObj) |
ACPI_STATUS | AcpiExOpcode_6A_0T_1R (ACPI_WALK_STATE *WalkState) |
#define _COMPONENT ACPI_EXECUTER |
Definition at line 51 of file exoparg6.c.
|
static |
Naming convention for AML interpreter execution routines.
The routines that begin execution of AML opcodes are named with a common convention based upon the number of arguments, the number of target operands, and whether or not a value is returned:
AcpiExOpcode_xA_yT_zR
Where:
xA - ARGUMENTS: The number of arguments (input operands) that are required for this opcode type (1 through 6 args). yT - TARGETS: The number of targets (output operands) that are required for this opcode type (0, 1, or 2 targets). zR - RETURN VALUE: Indicates whether this opcode type returns a value as the function return (0 or 1).
The AcpiExOpcode* functions are called via the Dispatcher component with fully resolved operands. !
Definition at line 103 of file exoparg6.c.
Referenced by AcpiExOpcode_6A_0T_1R().
ACPI_STATUS AcpiExOpcode_6A_0T_1R | ( | ACPI_WALK_STATE * | WalkState | ) |
Definition at line 221 of file exoparg6.c.