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

  /src/sys/external/bsd/acpica/dist/utilities/
utcache.c 165 * ObjectSize - Size of each cached object
167 * ReturnCache - Where the new cache object is returned
171 * DESCRIPTION: Create a cache object
193 /* Create the cache object */
201 /* Populate the cache object and return it */
217 * PARAMETERS: Cache - Handle to cache object
251 /* Delete and unlink one cached state object */
269 * PARAMETERS: Cache - Handle to cache object
274 * cache object.
296 /* Now we can delete the cache object */
    [all...]
utobject.c 3 * Module Name: utobject - ACPI object create/delete/size/cache routines
187 * Type - ACPI Type of the new object
189 * RETURN: A new internal object, null on failure
191 * DESCRIPTION: Create and initialize a new internal object.
193 * NOTE: We always allocate the worst-case object descriptor because
196 * the most memory efficient, but the efficiency of the object
208 ACPI_OPERAND_OBJECT *Object;
216 /* Allocate the raw object descriptor */
218 Object = AcpiUtAllocateObjectDescDbg (
220 if (!Object)
    [all...]
  /src/sys/external/bsd/acpica/dist/dispatcher/
dsmthdat.c 174 ACPI_OPERAND_OBJECT *Object,
190 * PARAMETERS: WalkState - Current walk state object
251 * PARAMETERS: WalkState - Current walk state object
274 if (WalkState->LocalVariables[Index].Object)
277 Index, WalkState->LocalVariables[Index].Object));
279 /* Detach object (if present) and remove a reference */
289 if (WalkState->Arguments[Index].Object)
292 Index, WalkState->Arguments[Index].Object));
294 /* Detach object (if present) and remove a reference */
310 * WalkState - Current walk state object
    [all...]
  /src/sys/external/bsd/acpica/dist/tools/examples/
examples.c 329 /* Complete the ACPI namespace object initialization */
430 /* Complete the ACPI namespace object initialization */
533 * 2) How to setup the return value object
549 ACPI_OBJECT *Object;
563 /* Ask ACPICA to allocate space for the return object */
574 /* Ensure that the return object is large enough */
585 Object = ReturnValue.Pointer;
586 if (Object->Type != ACPI_TYPE_INTEGER)
588 AcpiOsPrintf ("Invalid return type from _OSI, %.2X\n", Object->Type);
592 (UINT32) Object->Integer.Value))
    [all...]
  /src/sys/external/bsd/acpica/dist/common/
adwalk.c 226 * PARAMETERS: Origin - Starting object
261 * PARAMETERS: Origin - Starting object
745 * DESCRIPTION: Descending handler for namespace control method object load
899 ACPI_OPERAND_OBJECT *Object;
1026 Object = AcpiNsGetAttachedObject (Node);
1027 if (Object)
1029 ObjectType2 = Object->Common.Type;
1032 ParamCount = Object->Method.ParamCount;
  /src/sys/external/bsd/acpica/dist/debugger/
dbnames.c 217 * These object types map directly to the ACPI_TYPES
405 * DESCRIPTION: Dump entire namespace with full object pathnames and object
515 /* Get the full pathname to this object */
521 AcpiOsPrintf ("Could Not get pathname for object %p\n",
714 AcpiOsPrintf ("[%4.4s]: Unknown object type %X\n",
756 if (Node->Object->Field.RegionObj->Region.SpaceId != Info->AddressSpaceId)
763 /* Get and display the full pathname to this object */
769 AcpiOsPrintf ("Could Not get pathname for object %p\n", ObjHandle);
780 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)
161 * address space handlers and notify handlers. The object is a constant
164 * Note: The object is optimized to be aligned and will not work if it is
193 UINT16 ReferenceCount; /* For object deletion management */\
204 #define AOPOBJ_DATA_VALID 0x04 /* Object is initialized and data is valid */
234 * Note: The String and Buffer object must be identical through the
286 ACPI_SEMAPHORE OsSemaphore; /* Actual OS synchronization object */
296 ACPI_MUTEX OsMutex; /* Actual OS synchronization object */
424 * "Field Datum" -- a datum from the actual field object
433 UINT32 BaseByteOffset; /* Byte offset within containing object */\
    [all...]
aclocal.h 283 * The Namespace Node describes a named object that appears in the AML.
295 union acpi_operand_object *Object; /* Interpreter object */
296 UINT8 DescriptorType; /* Differentiate object descriptor types */
332 #define ANOBJ_IS_EXTERNAL 0x08 /* iASL only: This object created via External() */
335 #define ANOBJ_IS_REFERENCED 0x80 /* iASL only: Object was referenced */
387 /* Object types used during package copies */
562 /* Return object auto-repair info */
593 #define ACPI_NUM_RTYPES 5 /* Number of actual object types */
782 * Generic "state" object for stack
    [all...]

Completed in 17 milliseconds