HomeSort by: relevance | last modified time | path
    Searched defs:Object (Results 1 - 16 of 16) sorted by relevancy

  /src/sys/external/bsd/acpica/dist/utilities/
utcache.c 57 * ObjectSize - Size of each cached object
59 * ReturnCache - Where the new cache object is returned
63 * DESCRIPTION: Create a cache object
85 /* Create the cache object */
93 /* Populate the cache object and return it */
109 * PARAMETERS: Cache - Handle to cache object
143 /* Delete and unlink one cached state object */
161 * PARAMETERS: Cache - Handle to cache object
166 * cache object.
188 /* Now we can delete the cache object */
    [all...]
utcache.c 57 * ObjectSize - Size of each cached object
59 * ReturnCache - Where the new cache object is returned
63 * DESCRIPTION: Create a cache object
85 /* Create the cache object */
93 /* Populate the cache object and return it */
109 * PARAMETERS: Cache - Handle to cache object
143 /* Delete and unlink one cached state object */
161 * PARAMETERS: Cache - Handle to cache object
166 * cache object.
188 /* Now we can delete the cache object */
    [all...]
utobject.c 3 * Module Name: utobject - ACPI object create/delete/size/cache routines
79 * Type - ACPI Type of the new object
81 * RETURN: A new internal object, null on failure
83 * DESCRIPTION: Create and initialize a new internal object.
85 * NOTE: We always allocate the worst-case object descriptor because
88 * the most memory efficient, but the efficiency of the object
100 ACPI_OPERAND_OBJECT *Object;
108 /* Allocate the raw object descriptor */
110 Object = AcpiUtAllocateObjectDescDbg (
112 if (!Object)
    [all...]
utobject.c 3 * Module Name: utobject - ACPI object create/delete/size/cache routines
79 * Type - ACPI Type of the new object
81 * RETURN: A new internal object, null on failure
83 * DESCRIPTION: Create and initialize a new internal object.
85 * NOTE: We always allocate the worst-case object descriptor because
88 * the most memory efficient, but the efficiency of the object
100 ACPI_OPERAND_OBJECT *Object;
108 /* Allocate the raw object descriptor */
110 Object = AcpiUtAllocateObjectDescDbg (
112 if (!Object)
    [all...]
  /src/sys/external/bsd/acpica/dist/dispatcher/
dsmthdat.c 66 ACPI_OPERAND_OBJECT *Object,
82 * PARAMETERS: WalkState - Current walk state object
143 * PARAMETERS: WalkState - Current walk state object
166 if (WalkState->LocalVariables[Index].Object)
169 Index, WalkState->LocalVariables[Index].Object));
171 /* Detach object (if present) and remove a reference */
181 if (WalkState->Arguments[Index].Object)
184 Index, WalkState->Arguments[Index].Object));
186 /* Detach object (if present) and remove a reference */
202 * WalkState - Current walk state object
    [all...]
dsmthdat.c 66 ACPI_OPERAND_OBJECT *Object,
82 * PARAMETERS: WalkState - Current walk state object
143 * PARAMETERS: WalkState - Current walk state object
166 if (WalkState->LocalVariables[Index].Object)
169 Index, WalkState->LocalVariables[Index].Object));
171 /* Detach object (if present) and remove a reference */
181 if (WalkState->Arguments[Index].Object)
184 Index, WalkState->Arguments[Index].Object));
186 /* Detach object (if present) and remove a reference */
202 * WalkState - Current walk state object
    [all...]
  /src/sys/external/bsd/acpica/dist/tools/examples/
examples.c 221 /* Complete the ACPI namespace object initialization */
322 /* Complete the ACPI namespace object initialization */
425 * 2) How to setup the return value object
441 ACPI_OBJECT *Object;
455 /* Ask ACPICA to allocate space for the return object */
466 /* Ensure that the return object is large enough */
477 Object = ReturnValue.Pointer;
478 if (Object->Type != ACPI_TYPE_INTEGER)
480 AcpiOsPrintf ("Invalid return type from _OSI, %.2X\n", Object->Type);
484 (UINT32) Object->Integer.Value))
    [all...]
examples.c 221 /* Complete the ACPI namespace object initialization */
322 /* Complete the ACPI namespace object initialization */
425 * 2) How to setup the return value object
441 ACPI_OBJECT *Object;
455 /* Ask ACPICA to allocate space for the return object */
466 /* Ensure that the return object is large enough */
477 Object = ReturnValue.Pointer;
478 if (Object->Type != ACPI_TYPE_INTEGER)
480 AcpiOsPrintf ("Invalid return type from _OSI, %.2X\n", Object->Type);
484 (UINT32) Object->Integer.Value))
    [all...]
  /src/sys/external/bsd/acpica/dist/common/
adwalk.c 118 * PARAMETERS: Origin - Starting object
153 * PARAMETERS: Origin - Starting object
637 * DESCRIPTION: Descending handler for namespace control method object load
791 ACPI_OPERAND_OBJECT *Object;
918 Object = AcpiNsGetAttachedObject (Node);
919 if (Object)
921 ObjectType2 = Object->Common.Type;
924 ParamCount = Object->Method.ParamCount;
adwalk.c 118 * PARAMETERS: Origin - Starting object
153 * PARAMETERS: Origin - Starting object
637 * DESCRIPTION: Descending handler for namespace control method object load
791 ACPI_OPERAND_OBJECT *Object;
918 Object = AcpiNsGetAttachedObject (Node);
919 if (Object)
921 ObjectType2 = Object->Common.Type;
924 ParamCount = Object->Method.ParamCount;
  /src/sys/external/bsd/acpica/dist/debugger/
dbnames.c 109 * These object types map directly to the ACPI_TYPES
297 * DESCRIPTION: Dump entire namespace with full object pathnames and object
407 /* Get the full pathname to this object */
413 AcpiOsPrintf ("Could Not get pathname for object %p\n",
606 AcpiOsPrintf ("[%4.4s]: Unknown object type %X\n",
648 if (Node->Object->Field.RegionObj->Region.SpaceId != Info->AddressSpaceId)
655 /* Get and display the full pathname to this object */
661 AcpiOsPrintf ("Could Not get pathname for object %p\n", ObjHandle);
672 AcpiOsPrintf ("Could Not evaluate object %p\n", ObjHandle)
    [all...]
dbnames.c 109 * These object types map directly to the ACPI_TYPES
297 * DESCRIPTION: Dump entire namespace with full object pathnames and object
407 /* Get the full pathname to this object */
413 AcpiOsPrintf ("Could Not get pathname for object %p\n",
606 AcpiOsPrintf ("[%4.4s]: Unknown object type %X\n",
648 if (Node->Object->Field.RegionObj->Region.SpaceId != Info->AddressSpaceId)
655 /* Get and display the full pathname to this object */
661 AcpiOsPrintf ("Could Not get pathname for object %p\n", ObjHandle);
672 AcpiOsPrintf ("Could Not evaluate object %p\n", ObjHandle)
    [all...]
  /src/sys/external/bsd/acpica/dist/include/
acobject.h 3 * Name: acobject.h - Definition of ACPI_OPERAND_OBJECT (Internal object only)
53 * address space handlers and notify handlers. The object is a constant
56 * Note: The object is optimized to be aligned and will not work if it is
85 UINT16 ReferenceCount; /* For object deletion management */\
96 #define AOPOBJ_DATA_VALID 0x04 /* Object is initialized and data is valid */
126 * Note: The String and Buffer object must be identical through the
178 ACPI_SEMAPHORE OsSemaphore; /* Actual OS synchronization object */
188 ACPI_MUTEX OsMutex; /* Actual OS synchronization object */
316 * "Field Datum" -- a datum from the actual field object
325 UINT32 BaseByteOffset; /* Byte offset within containing object */\
    [all...]
acobject.h 3 * Name: acobject.h - Definition of ACPI_OPERAND_OBJECT (Internal object only)
53 * address space handlers and notify handlers. The object is a constant
56 * Note: The object is optimized to be aligned and will not work if it is
85 UINT16 ReferenceCount; /* For object deletion management */\
96 #define AOPOBJ_DATA_VALID 0x04 /* Object is initialized and data is valid */
126 * Note: The String and Buffer object must be identical through the
178 ACPI_SEMAPHORE OsSemaphore; /* Actual OS synchronization object */
188 ACPI_MUTEX OsMutex; /* Actual OS synchronization object */
316 * "Field Datum" -- a datum from the actual field object
325 UINT32 BaseByteOffset; /* Byte offset within containing object */\
    [all...]
aclocal.h 175 * The Namespace Node describes a named object that appears in the AML.
187 union acpi_operand_object *Object; /* Interpreter object */
188 UINT8 DescriptorType; /* Differentiate object descriptor types */
224 #define ANOBJ_IS_EXTERNAL 0x08 /* iASL only: This object created via External() */
227 #define ANOBJ_IS_REFERENCED 0x80 /* iASL only: Object was referenced */
279 /* Object types used during package copies */
454 /* Return object auto-repair info */
485 #define ACPI_NUM_RTYPES 5 /* Number of actual object types */
674 * Generic "state" object for stack
    [all...]
aclocal.h 175 * The Namespace Node describes a named object that appears in the AML.
187 union acpi_operand_object *Object; /* Interpreter object */
188 UINT8 DescriptorType; /* Differentiate object descriptor types */
224 #define ANOBJ_IS_EXTERNAL 0x08 /* iASL only: This object created via External() */
227 #define ANOBJ_IS_REFERENCED 0x80 /* iASL only: Object was referenced */
279 /* Object types used during package copies */
454 /* Return object auto-repair info */
485 #define ACPI_NUM_RTYPES 5 /* Number of actual object types */
674 * Generic "state" object for stack
    [all...]

Completed in 47 milliseconds