Home | History | Annotate | Download | only in PciBusDxe

Lines Matching refs:Supports

1462   Performs an operation on the attributes that this PCI controller supports. The operations include

1495 UINT64 Supports;
1516 *Result = PciIoDevice->Supports;
1533 (~Attributes) & (PciIoDevice->Supports),
1556 Attributes &= (PciIoDevice->Supports);
1581 Supports = (PciIoDevice->Supports) & Attributes;
1582 if (Supports != Attributes) {
1747 Gets the attributes that this PCI controller supports setting on a BAR using
1753 @param Supports A pointer to the mask of attributes that this PCI controller supports
1758 @retval EFI_SUCCESS If Supports is not NULL, then the attributes that the PCI
1759 controller supports are returned in Supports. If Resources
1762 @retval EFI_INVALID_PARAMETER Both Supports and Attributes are NULL.
1773 OUT UINT64 *Supports, OPTIONAL
1784 if (Supports == NULL && Resources == NULL) {
1796 if (Supports != NULL) {
1797 *Supports = PciIoDevice->Supports & EFI_PCI_IO_ATTRIBUTE_MEMORY_CACHED & EFI_PCI_IO_ATTRIBUTE_MEMORY_WRITE_COMBINE;
1930 UINT64 Supports;
1948 Supports = PciIoDevice->Supports & EFI_PCI_IO_ATTRIBUTE_MEMORY_CACHED & EFI_PCI_IO_ATTRIBUTE_MEMORY_WRITE_COMBINE;
1950 if (Attributes != (Attributes & Supports)) {