Lines Matching defs:Element
328 * 2) Element was found. Returns Allocation parameter.
329 * 3) Element was not found. Returns position where it should be
351 ACPI_DEBUG_MEM_BLOCK *Element;
354 Element = AcpiGbl_GlobalList->ListHead;
355 if (!Element)
367 while (Element > Allocation)
371 if (!Element->Next)
373 return (Element);
376 Element = Element->Next;
379 if (Element == Allocation)
381 return (Element);
384 return (Element->Previous);
415 ACPI_DEBUG_MEM_BLOCK *Element;
438 Element = AcpiUtFindAllocation (Allocation);
439 if (Element == Allocation)
457 if (!Element)
476 Allocation->Next = Element->Next;
477 Allocation->Previous = Element;
479 if (Element->Next)
481 (Element->Next)->Previous = Allocation;
484 Element->Next = Allocation;
651 ACPI_DEBUG_MEM_BLOCK *Element;
673 Element = AcpiGbl_GlobalList->ListHead;
674 while (Element)
676 if ((Element->Component & Component) &&
677 ((Module == NULL) || (0 == strcmp (Module, Element->Module))))
680 ACPI_DESCRIPTOR, &Element->UserSpace);
682 if (Element->Size < sizeof (ACPI_COMMON_DESCRIPTOR))
686 Descriptor, Element->Size, Element->Module,
687 Element->Line);
697 Descriptor, Element->Size, Element->Module,
698 Element->Line, AcpiUtGetDescriptorName (Descriptor));
708 if (Element->Size == sizeof (ACPI_OPERAND_OBJECT))
716 if (Element->Size == sizeof (ACPI_PARSE_OBJECT))
724 if (Element->Size == sizeof (ACPI_NAMESPACE_NODE))
769 Element = Element->Next;