Lines Matching defs:class

97  * Registered vHCI class driver lists
198 * Obsolete vHCI class definition; to be removed after Leadville update
203 "\tThere already exists one vHCI driver for class %s\n"
204 "\tOnly one vHCI driver for each class is allowed\n";
380 mdi_vhci_register(char *class, dev_info_t *vdip, mdi_vhci_ops_t *vops,
399 if (strcmp(class, MDI_HCI_CLASS_IB) != 0)
410 if (strcmp(vh->vh_class, class) == 0) {
414 * module per class
418 cmn_err(CE_NOTE, vhci_greeting, class);
439 vh->vh_class = kmem_zalloc(strlen(class) + 1, KM_SLEEP);
440 (void) strcpy(vh->vh_class, class);
572 * Look for a matching vHCI module given a vHCI class name
578 i_mdi_vhci_class2vhci(char *class)
586 if (strcmp(vh->vh_class, class) == 0) {
624 mdi_phci_register(char *class, dev_info_t *pdip, int flags)
660 vh = (mdi_vhci_t *)i_mdi_vhci_class2vhci(class);
693 i_mdi_log_sysevent(pdip, class, ESC_DDI_INITIATOR_REGISTER);
7425 * List of vhci class names:
7426 * A vhci class name must be in this list only if the corresponding vhci
7434 * During boot time, the on-disk vhci cache for every vhci class is read
7446 * Given vhci class name, return its on-disk vhci cache filename.
9001 * vhci class and root support capability of a phci driver can be
9002 * specified using ddi-vhci-class and ddi-no-root-support properties in the
9121 * Attach the phci driver instances associated with the specified vhci class.
9378 * Read the on-disk vhci cache into an nvlist for the specified vhci class.
9681 mdi_is_dev_supported(char *class, dev_info_t *pdip, void *cinfo)
9685 ASSERT(class && pdip);
9698 vh = (mdi_vhci_t *)i_mdi_vhci_class2vhci(class);