Lines Matching refs:ObjDesc
252 ACPI_OPERAND_OBJECT *ObjDesc) in AcpiDbDecodeInternalObject() argument
257 if (!ObjDesc) in AcpiDbDecodeInternalObject()
263 if (ACPI_GET_DESCRIPTOR_TYPE (ObjDesc) != ACPI_DESC_TYPE_OPERAND) in AcpiDbDecodeInternalObject()
265 AcpiOsPrintf (" %p [%s]", ObjDesc, in AcpiDbDecodeInternalObject()
266 AcpiUtGetDescriptorName (ObjDesc)); in AcpiDbDecodeInternalObject()
270 AcpiOsPrintf (" %s", AcpiUtGetObjectTypeName (ObjDesc)); in AcpiDbDecodeInternalObject()
272 switch (ObjDesc->Common.Type) in AcpiDbDecodeInternalObject()
277 ACPI_FORMAT_UINT64 (ObjDesc->Integer.Value)); in AcpiDbDecodeInternalObject()
283 ObjDesc->String.Length, ObjDesc->String.Pointer); in AcpiDbDecodeInternalObject()
285 if (ObjDesc->String.Length > 60) in AcpiDbDecodeInternalObject()
297 AcpiOsPrintf ("(%u)", ObjDesc->Buffer.Length); in AcpiDbDecodeInternalObject()
298 for (i = 0; (i < 8) && (i < ObjDesc->Buffer.Length); i++) in AcpiDbDecodeInternalObject()
300 AcpiOsPrintf (" %2.2X", ObjDesc->Buffer.Pointer[i]); in AcpiDbDecodeInternalObject()
306 AcpiOsPrintf (" %p", ObjDesc); in AcpiDbDecodeInternalObject()
378 ACPI_OPERAND_OBJECT *ObjDesc, in AcpiDbDisplayInternalObject() argument
384 AcpiOsPrintf ("%p ", ObjDesc); in AcpiDbDisplayInternalObject()
386 if (!ObjDesc) in AcpiDbDisplayInternalObject()
394 switch (ACPI_GET_DESCRIPTOR_TYPE (ObjDesc)) in AcpiDbDisplayInternalObject()
403 AcpiDbDecodeNode ((ACPI_NAMESPACE_NODE *) ObjDesc); in AcpiDbDisplayInternalObject()
408 Type = ObjDesc->Common.Type; in AcpiDbDisplayInternalObject()
417 switch (ObjDesc->Common.Type) in AcpiDbDisplayInternalObject()
421 AcpiOsPrintf ("[%s] ", AcpiUtGetReferenceName (ObjDesc)); in AcpiDbDisplayInternalObject()
425 switch (ObjDesc->Reference.Class) in AcpiDbDisplayInternalObject()
429 AcpiOsPrintf ("%X ", ObjDesc->Reference.Value); in AcpiDbDisplayInternalObject()
432 ObjDesc = WalkState->LocalVariables in AcpiDbDisplayInternalObject()
433 [ObjDesc->Reference.Value].Object; in AcpiDbDisplayInternalObject()
434 AcpiOsPrintf ("%p", ObjDesc); in AcpiDbDisplayInternalObject()
435 AcpiDbDecodeInternalObject (ObjDesc); in AcpiDbDisplayInternalObject()
441 AcpiOsPrintf ("%X ", ObjDesc->Reference.Value); in AcpiDbDisplayInternalObject()
444 ObjDesc = WalkState->Arguments in AcpiDbDisplayInternalObject()
445 [ObjDesc->Reference.Value].Object; in AcpiDbDisplayInternalObject()
446 AcpiOsPrintf ("%p", ObjDesc); in AcpiDbDisplayInternalObject()
447 AcpiDbDecodeInternalObject (ObjDesc); in AcpiDbDisplayInternalObject()
453 switch (ObjDesc->Reference.TargetType) in AcpiDbDisplayInternalObject()
457 AcpiOsPrintf ("%p", ObjDesc->Reference.Object); in AcpiDbDisplayInternalObject()
458 AcpiDbDecodeInternalObject (ObjDesc->Reference.Object); in AcpiDbDisplayInternalObject()
463 AcpiOsPrintf ("%p", ObjDesc->Reference.Where); in AcpiDbDisplayInternalObject()
464 if (!ObjDesc->Reference.Where) in AcpiDbDisplayInternalObject()
471 *(ObjDesc->Reference.Where)); in AcpiDbDisplayInternalObject()
484 if (!ObjDesc->Reference.Object) in AcpiDbDisplayInternalObject()
493 switch (ACPI_GET_DESCRIPTOR_TYPE (ObjDesc->Reference.Object)) in AcpiDbDisplayInternalObject()
497 AcpiDbDecodeNode (ObjDesc->Reference.Object); in AcpiDbDisplayInternalObject()
502 AcpiDbDecodeInternalObject (ObjDesc->Reference.Object); in AcpiDbDisplayInternalObject()
512 AcpiDbDecodeNode (ObjDesc->Reference.Node); in AcpiDbDisplayInternalObject()
523 AcpiOsPrintf ("%2.2X\n", ObjDesc->Reference.Class); in AcpiDbDisplayInternalObject()
531 AcpiDbDecodeInternalObject (ObjDesc); in AcpiDbDisplayInternalObject()
539 AcpiUtGetDescriptorName (ObjDesc)); in AcpiDbDisplayInternalObject()
564 ACPI_OPERAND_OBJECT *ObjDesc; in AcpiDbDecodeLocals() local
595 ObjDesc = WalkState->LocalVariables[i].Object; in AcpiDbDecodeLocals()
596 if (ObjDesc) in AcpiDbDecodeLocals()
612 ObjDesc = WalkState->LocalVariables[i].Object; in AcpiDbDecodeLocals()
613 if (ObjDesc) in AcpiDbDecodeLocals()
616 AcpiDbDisplayInternalObject (ObjDesc, WalkState); in AcpiDbDecodeLocals()
646 ACPI_OPERAND_OBJECT *ObjDesc; in AcpiDbDecodeArguments() local
677 ObjDesc = WalkState->Arguments[i].Object; in AcpiDbDecodeArguments()
678 if (ObjDesc) in AcpiDbDecodeArguments()
696 ObjDesc = WalkState->Arguments[i].Object; in AcpiDbDecodeArguments()
697 if (ObjDesc) in AcpiDbDecodeArguments()
700 AcpiDbDisplayInternalObject (ObjDesc, WalkState); in AcpiDbDecodeArguments()