Lines Matching refs:Element
457 ACPI_DEBUG_MEM_BLOCK *Element; in AcpiUtFindAllocation() local
460 Element = AcpiGbl_GlobalList->ListHead; in AcpiUtFindAllocation()
461 if (!Element) in AcpiUtFindAllocation()
473 while (Element > Allocation) in AcpiUtFindAllocation()
477 if (!Element->Next) in AcpiUtFindAllocation()
479 return (Element); in AcpiUtFindAllocation()
482 Element = Element->Next; in AcpiUtFindAllocation()
485 if (Element == Allocation) in AcpiUtFindAllocation()
487 return (Element); in AcpiUtFindAllocation()
490 return (Element->Previous); in AcpiUtFindAllocation()
521 ACPI_DEBUG_MEM_BLOCK *Element; in AcpiUtTrackAllocation() local
544 Element = AcpiUtFindAllocation (Allocation); in AcpiUtTrackAllocation()
545 if (Element == Allocation) in AcpiUtTrackAllocation()
562 if (!Element) in AcpiUtTrackAllocation()
581 Allocation->Next = Element->Next; in AcpiUtTrackAllocation()
582 Allocation->Previous = Element; in AcpiUtTrackAllocation()
584 if (Element->Next) in AcpiUtTrackAllocation()
586 (Element->Next)->Previous = Allocation; in AcpiUtTrackAllocation()
589 Element->Next = Allocation; in AcpiUtTrackAllocation()
756 ACPI_DEBUG_MEM_BLOCK *Element; in AcpiUtDumpAllocations() local
783 Element = AcpiGbl_GlobalList->ListHead; in AcpiUtDumpAllocations()
784 while (Element) in AcpiUtDumpAllocations()
786 if ((Element->Component & Component) && in AcpiUtDumpAllocations()
787 ((Module == NULL) || (0 == strcmp (Module, Element->Module)))) in AcpiUtDumpAllocations()
790 ACPI_DESCRIPTOR, &Element->UserSpace); in AcpiUtDumpAllocations()
792 if (Element->Size < sizeof (ACPI_COMMON_DESCRIPTOR)) in AcpiUtDumpAllocations()
796 Descriptor, Element->Size, Element->Module, in AcpiUtDumpAllocations()
797 Element->Line); in AcpiUtDumpAllocations()
807 Descriptor, Element->Size, Element->Module, in AcpiUtDumpAllocations()
808 Element->Line, AcpiUtGetDescriptorName (Descriptor)); in AcpiUtDumpAllocations()
815 AcpiUtDumpBuffer ((UINT8 *) Descriptor, Element->Size, in AcpiUtDumpAllocations()
827 if (Element->Size == sizeof (ACPI_OPERAND_OBJECT)) in AcpiUtDumpAllocations()
835 if (Element->Size == sizeof (ACPI_PARSE_OBJECT)) in AcpiUtDumpAllocations()
843 if (Element->Size == sizeof (ACPI_NAMESPACE_NODE)) in AcpiUtDumpAllocations()
888 Element = Element->Next; in AcpiUtDumpAllocations()