mirror of
https://github.com/acpica/acpica/
synced 2025-01-25 10:52:02 +03:00
new function prototypes
date 2001.11.30.21.17.00; author rmoore1; state Exp;
This commit is contained in:
parent
330fa30ed4
commit
3ff5fd7951
@ -1,7 +1,7 @@
|
||||
/******************************************************************************
|
||||
*
|
||||
* Name: acinterp.h - Interpreter subcomponent prototypes and defines
|
||||
* $Revision: 1.122 $
|
||||
* $Revision: 1.123 $
|
||||
*
|
||||
*****************************************************************************/
|
||||
|
||||
@ -129,7 +129,7 @@ AcpiExResolveOperands (
|
||||
|
||||
|
||||
/*
|
||||
* amxface - External interpreter interfaces
|
||||
* exxface - External interpreter interfaces
|
||||
*/
|
||||
|
||||
ACPI_STATUS
|
||||
@ -144,7 +144,7 @@ AcpiExExecuteMethod (
|
||||
|
||||
|
||||
/*
|
||||
* amconvrt - object conversion
|
||||
* exconvrt - object conversion
|
||||
*/
|
||||
|
||||
ACPI_STATUS
|
||||
@ -170,12 +170,13 @@ AcpiExConvertToString (
|
||||
ACPI_STATUS
|
||||
AcpiExConvertToTargetType (
|
||||
ACPI_OBJECT_TYPE8 DestinationType,
|
||||
ACPI_OPERAND_OBJECT **ObjDesc,
|
||||
ACPI_OPERAND_OBJECT *SourceDesc,
|
||||
ACPI_OPERAND_OBJECT **ResultDesc,
|
||||
ACPI_WALK_STATE *WalkState);
|
||||
|
||||
|
||||
/*
|
||||
* amfield - ACPI AML (p-code) execution - field manipulation
|
||||
* exfield - ACPI AML (p-code) execution - field manipulation
|
||||
*/
|
||||
|
||||
ACPI_STATUS
|
||||
@ -246,7 +247,7 @@ AcpiExWriteDataToField (
|
||||
ACPI_OPERAND_OBJECT *ObjDesc);
|
||||
|
||||
/*
|
||||
* ammisc - ACPI AML (p-code) execution - specific opcodes
|
||||
* exmisc - ACPI AML (p-code) execution - specific opcodes
|
||||
*/
|
||||
|
||||
ACPI_STATUS
|
||||
@ -334,7 +335,7 @@ AcpiExCreateMethod (
|
||||
|
||||
|
||||
/*
|
||||
* ammutex - mutex support
|
||||
* exmutex - mutex support
|
||||
*/
|
||||
|
||||
ACPI_STATUS
|
||||
@ -362,7 +363,7 @@ AcpiExLinkMutex (
|
||||
ACPI_THREAD_STATE *Thread);
|
||||
|
||||
/*
|
||||
* amprep - ACPI AML (p-code) execution - prep utilities
|
||||
* exprep - ACPI AML (p-code) execution - prep utilities
|
||||
*/
|
||||
|
||||
ACPI_STATUS
|
||||
@ -378,7 +379,7 @@ AcpiExPrepFieldValue (
|
||||
ACPI_CREATE_FIELD_INFO *Info);
|
||||
|
||||
/*
|
||||
* amsystem - Interface to OS services
|
||||
* exsystem - Interface to OS services
|
||||
*/
|
||||
|
||||
ACPI_STATUS
|
||||
@ -423,7 +424,7 @@ AcpiExSystemWaitSemaphore (
|
||||
|
||||
|
||||
/*
|
||||
* ammonadic - ACPI AML (p-code) execution, monadic operators
|
||||
* exmonadic - ACPI AML (p-code) execution, monadic operators
|
||||
*/
|
||||
|
||||
ACPI_STATUS
|
||||
@ -443,7 +444,7 @@ AcpiExOpcode_1A_1T_0R (
|
||||
ACPI_WALK_STATE *WalkState);
|
||||
|
||||
/*
|
||||
* amdyadic - ACPI AML (p-code) execution, dyadic operators
|
||||
* exdyadic - ACPI AML (p-code) execution, dyadic operators
|
||||
*/
|
||||
|
||||
ACPI_STATUS
|
||||
@ -464,7 +465,7 @@ AcpiExOpcode_2A_2T_1R (
|
||||
|
||||
|
||||
/*
|
||||
* amresolv - Object resolution and get value functions
|
||||
* exresolv - Object resolution and get value functions
|
||||
*/
|
||||
|
||||
ACPI_STATUS
|
||||
@ -484,7 +485,7 @@ AcpiExResolveObjectToValue (
|
||||
|
||||
|
||||
/*
|
||||
* amdump - Scanner debug output routines
|
||||
* exdump - Scanner debug output routines
|
||||
*/
|
||||
|
||||
void
|
||||
@ -521,7 +522,7 @@ AcpiExDumpNode (
|
||||
|
||||
|
||||
/*
|
||||
* amnames - interpreter/scanner name load/execute
|
||||
* exnames - interpreter/scanner name load/execute
|
||||
*/
|
||||
|
||||
NATIVE_CHAR *
|
||||
@ -552,7 +553,7 @@ AcpiExDoName (
|
||||
|
||||
|
||||
/*
|
||||
* amstore - Object store support
|
||||
* exstore - Object store support
|
||||
*/
|
||||
|
||||
ACPI_STATUS
|
||||
@ -573,15 +574,9 @@ AcpiExStoreObjectToNode (
|
||||
ACPI_NAMESPACE_NODE *Node,
|
||||
ACPI_WALK_STATE *WalkState);
|
||||
|
||||
ACPI_STATUS
|
||||
AcpiExStoreObjectToObject (
|
||||
ACPI_OPERAND_OBJECT *SourceDesc,
|
||||
ACPI_OPERAND_OBJECT *DestDesc,
|
||||
ACPI_WALK_STATE *WalkState);
|
||||
|
||||
|
||||
/*
|
||||
*
|
||||
* exstoren
|
||||
*/
|
||||
|
||||
ACPI_STATUS
|
||||
@ -591,24 +586,24 @@ AcpiExResolveObject (
|
||||
ACPI_WALK_STATE *WalkState);
|
||||
|
||||
ACPI_STATUS
|
||||
AcpiExStoreObject (
|
||||
AcpiExStoreObjectToObject (
|
||||
ACPI_OPERAND_OBJECT *SourceDesc,
|
||||
ACPI_OBJECT_TYPE8 TargetType,
|
||||
ACPI_OPERAND_OBJECT **TargetDescPtr,
|
||||
ACPI_OPERAND_OBJECT *DestDesc,
|
||||
ACPI_OPERAND_OBJECT **NewDesc,
|
||||
ACPI_WALK_STATE *WalkState);
|
||||
|
||||
|
||||
/*
|
||||
* amcopy - object copy
|
||||
* excopy - object copy
|
||||
*/
|
||||
|
||||
ACPI_STATUS
|
||||
AcpiExCopyBufferToBuffer (
|
||||
AcpiExStoreBufferToBuffer (
|
||||
ACPI_OPERAND_OBJECT *SourceDesc,
|
||||
ACPI_OPERAND_OBJECT *TargetDesc);
|
||||
|
||||
ACPI_STATUS
|
||||
AcpiExCopyStringToString (
|
||||
AcpiExStoreStringToString (
|
||||
ACPI_OPERAND_OBJECT *SourceDesc,
|
||||
ACPI_OPERAND_OBJECT *TargetDesc);
|
||||
|
||||
@ -633,7 +628,7 @@ AcpiExCopyIntegerToBufferField (
|
||||
ACPI_OPERAND_OBJECT *TargetDesc);
|
||||
|
||||
/*
|
||||
* amutils - interpreter/scanner utilities
|
||||
* exutils - interpreter/scanner utilities
|
||||
*/
|
||||
|
||||
ACPI_STATUS
|
||||
@ -678,7 +673,7 @@ AcpiExUnsignedIntegerToString (
|
||||
|
||||
|
||||
/*
|
||||
* amregion - default OpRegion handlers
|
||||
* exregion - default OpRegion handlers
|
||||
*/
|
||||
|
||||
ACPI_STATUS
|
||||
|
Loading…
Reference in New Issue
Block a user