Home | History | Annotate | Download | only in utilities

Lines Matching refs:Object

162  * Properties of the ACPI Object Types, both internal and external.
183 ACPI_NS_NORMAL, /* 16 Debug Object */
300 * PARAMETERS: Type - An ACPI object type
302 * RETURN: Decoded ACPI object type name
319 /* Printable names of the ACPI object types */
380 ACPI_DEBUG_PRINT ((ACPI_DB_EXEC, "Null Object Descriptor\n"));
381 return_STR ("[NULL Object Descriptor]");
390 "Invalid object descriptor type: 0x%2.2X [%s] (%p)\n",
394 return_STR ("Invalid object");
405 * PARAMETERS: Object - A namespace node
415 void *Object)
417 ACPI_NAMESPACE_NODE *Node = (ACPI_NAMESPACE_NODE *) Object;
422 if (!Object)
429 if ((Object
430 (Object == AcpiGbl_RootNode))
458 * PARAMETERS: Object - An ACPI object
462 * DESCRIPTION: Validate object and return the descriptor type
466 /* Printable names of object descriptor types */
471 /* 01 */ "Cached Object",
484 /* 14 */ "Operand Object",
491 void *Object)
494 if (!Object)
496 return ("NULL OBJECT");
499 if (ACPI_GET_DESCRIPTOR_TYPE (Object) > ACPI_DESC_TYPE_MAX)
504 return (AcpiGbl_DescTypeNames[ACPI_GET_DESCRIPTOR_TYPE (Object)]);
512 * PARAMETERS: Object - An ACPI reference object
516 * DESCRIPTION: Decode a reference object sub-type to a string.
520 /* Printable names of reference object sub-types */
529 /* 05 */ "Named Object",
535 ACPI_OPERAND_OBJECT *Object)
538 if (!Object)
540 return ("NULL Object");
543 if (ACPI_GET_DESCRIPTOR_TYPE (Object) != ACPI_DESC_TYPE_OPERAND)
545 return ("Not an Operand object");
548 if (Object->Common.Type != ACPI_TYPE_LOCAL_REFERENCE)
550 return ("Not a Reference object");
553 if (Object->Reference.Class > ACPI_REFCLASS_MAX)
558 return (AcpiGbl_RefClassNames[Object->Reference.Class]);
674 /* 00 - 0F are "common to all object types" (from ACPI Spec) */
688 /* 80 - 84 are per-object-type */
705 return ("Target object type does not support notifies");
780 * PARAMETERS: Type - Object type to be validated
782 * RETURN: TRUE if valid object type, FALSE otherwise
784 * DESCRIPTION: Validate an object type