Lines Matching refs:NextInterface
305 ACPI_INTERFACE_INFO *NextInterface; in AcpiUtInterfaceTerminate() local
314 NextInterface = AcpiGbl_SupportedInterfaces; in AcpiUtInterfaceTerminate()
315 while (NextInterface) in AcpiUtInterfaceTerminate()
317 AcpiGbl_SupportedInterfaces = NextInterface->Next; in AcpiUtInterfaceTerminate()
319 if (NextInterface->Flags & ACPI_OSI_DYNAMIC) in AcpiUtInterfaceTerminate()
323 ACPI_FREE (NextInterface->Name); in AcpiUtInterfaceTerminate()
324 ACPI_FREE (NextInterface); in AcpiUtInterfaceTerminate()
330 if (NextInterface->Flags & ACPI_OSI_DEFAULT_INVALID) in AcpiUtInterfaceTerminate()
332 NextInterface->Flags |= ACPI_OSI_INVALID; in AcpiUtInterfaceTerminate()
336 NextInterface->Flags &= ~ACPI_OSI_INVALID; in AcpiUtInterfaceTerminate()
340 NextInterface = AcpiGbl_SupportedInterfaces; in AcpiUtInterfaceTerminate()
412 ACPI_INTERFACE_INFO *NextInterface; in AcpiUtRemoveInterface() local
415 PreviousInterface = NextInterface = AcpiGbl_SupportedInterfaces; in AcpiUtRemoveInterface()
416 while (NextInterface) in AcpiUtRemoveInterface()
418 if (!strcmp (InterfaceName, NextInterface->Name)) in AcpiUtRemoveInterface()
424 if (NextInterface->Flags & ACPI_OSI_DYNAMIC) in AcpiUtRemoveInterface()
428 if (PreviousInterface == NextInterface) in AcpiUtRemoveInterface()
430 AcpiGbl_SupportedInterfaces = NextInterface->Next; in AcpiUtRemoveInterface()
434 PreviousInterface->Next = NextInterface->Next; in AcpiUtRemoveInterface()
437 ACPI_FREE (NextInterface->Name); in AcpiUtRemoveInterface()
438 ACPI_FREE (NextInterface); in AcpiUtRemoveInterface()
446 if (NextInterface->Flags & ACPI_OSI_INVALID) in AcpiUtRemoveInterface()
451 NextInterface->Flags |= ACPI_OSI_INVALID; in AcpiUtRemoveInterface()
457 PreviousInterface = NextInterface; in AcpiUtRemoveInterface()
458 NextInterface = NextInterface->Next; in AcpiUtRemoveInterface()
486 ACPI_INTERFACE_INFO *NextInterface; in AcpiUtUpdateInterfaces() local
489 NextInterface = AcpiGbl_SupportedInterfaces; in AcpiUtUpdateInterfaces()
490 while (NextInterface) in AcpiUtUpdateInterfaces()
492 if (((NextInterface->Flags & ACPI_OSI_FEATURE) && in AcpiUtUpdateInterfaces()
494 (!(NextInterface->Flags & ACPI_OSI_FEATURE) && in AcpiUtUpdateInterfaces()
501 NextInterface->Flags |= ACPI_OSI_INVALID; in AcpiUtUpdateInterfaces()
507 NextInterface->Flags &= ~ACPI_OSI_INVALID; in AcpiUtUpdateInterfaces()
511 NextInterface = NextInterface->Next; in AcpiUtUpdateInterfaces()
535 ACPI_INTERFACE_INFO *NextInterface; in AcpiUtGetInterface() local
538 NextInterface = AcpiGbl_SupportedInterfaces; in AcpiUtGetInterface()
539 while (NextInterface) in AcpiUtGetInterface()
541 if (!strcmp (InterfaceName, NextInterface->Name)) in AcpiUtGetInterface()
543 return (NextInterface); in AcpiUtGetInterface()
546 NextInterface = NextInterface->Next; in AcpiUtGetInterface()