PciId class

A repository of all known ID's used in PCI devices: ID's of vendors, devices, subsystems and device classes. This package can be utilized to display human-readable names instead of cryptic numeric codes.

Constructors

PciId()

Properties

hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Static Properties

allDeviceClasses Iterable<PciDeviceClass>
Holds a collection all PCI device classes.
no setter
allVendors Iterable<PciVendor>
Holds a collection of all PCI vendors.
no setter

Static Methods

lookupDevice(int id, {required int vendorId}) PciDevice?
Looks up a PCI device by the id and vendorId.
lookupDeviceClass(int id) PciDeviceClass?
Looks up a PCI device class by the id.
lookupSubclass(int id, {required int deviceClassId}) PciSubclass?
Looks up a PCI subclass by the id and deviceClassId.
lookupVendor(int id) PciVendor?
Looks up a PCI vendor by the id.