Lines Matching refs:type

97  * DESCRIPTION: Retrieve the value from an internal object. The Reference type
115 /* This is an object of type union acpi_operand_object */
117 switch (stack_desc->common.type) {
219 if ((stack_desc->reference.node->type ==
221 || (stack_desc->reference.node->type ==
241 "Unknown Reference type 0x%X in %p",
265 stack_desc, stack_desc->common.type));
291 * return_type - Where the object type is returned
296 * DESCRIPTION: Return the base object and type. Traverse a reference list if
310 acpi_object_type type;
320 type = obj_desc->common.type;
325 type = ((struct acpi_namespace_node *)obj_desc)->type;
328 /* If we had an Alias node, use the attached object for type info */
330 if (type == ACPI_TYPE_LOCAL_ALIAS) {
331 type = ((struct acpi_namespace_node *)obj_desc)->type;
337 switch (type) {
362 /* If type is anything other than a reference, we are done */
364 if (type != ACPI_TYPE_LOCAL_REFERENCE) {
374 while (obj_desc->common.type == ACPI_TYPE_LOCAL_REFERENCE) {
404 /* No object, use the NS node type */
406 type = acpi_ns_get_type(node);
419 /* Get the type of this reference (index into another object) */
421 type = obj_desc->reference.target_type;
422 if (type != ACPI_TYPE_PACKAGE) {
427 * The main object is a package, we want to get the type
438 type = 0; /* Uninitialized */
445 type = ACPI_TYPE_DDB_HANDLE;
481 type = ACPI_TYPE_ANY;
489 /* The Debug Object is of type "DebugObject" */
491 type = ACPI_TYPE_DEBUG_OBJECT;
507 type = obj_desc->common.type;
512 switch (type) {
517 type = ACPI_TYPE_FIELD_UNIT;
524 type = ACPI_TYPE_ANY;
534 *return_type = type;