Lines Matching refs:spec_type

5683 ddi_create_minor_common(dev_info_t *dip, char *name, int spec_type,
5690 if (spec_type != S_IFCHR && spec_type != S_IFBLK)
5771 dmdp->ddm_spec_type = spec_type;
5806 ddi_create_minor_node(dev_info_t *dip, char *name, int spec_type,
5809 return (ddi_create_minor_common(dip, name, spec_type, minor_num,
5814 ddi_create_priv_minor_node(dev_info_t *dip, char *name, int spec_type,
5818 return (ddi_create_minor_common(dip, name, spec_type, minor_num,
5823 ddi_create_default_minor_node(dev_info_t *dip, char *name, int spec_type,
5826 return (ddi_create_minor_common(dip, name, spec_type, minor_num,
5836 ddi_create_internal_pathname(dev_info_t *dip, char *name, int spec_type,
5839 return (ddi_create_minor_common(dip, name, spec_type, minor_num,
6769 * of the minor node corresponding to the dev_t. If spec_type is 0 then
6771 * of that node. For a non-zero spec_type, an attach is performed and a
6783 ddi_dev_pathname(dev_t devt, int spec_type, char *path)
6811 /* if spec_type given we must drive attach and search minor nodes */
6812 if ((spec_type == S_IFCHR) || (spec_type == S_IFBLK)) {
6820 devt, spec_type);
7478 * Search for minor name that has specified dev_t and spec_type.
7479 * If spec_type is zero then any dev_t match works. Since we
7484 i_ddi_devtspectype_to_minorname(dev_info_t *dip, dev_t dev, int spec_type)
7504 ((((spec_type & (S_IFCHR|S_IFBLK))) == 0) ||
7505 (dmdp->ddm_spec_type == spec_type)))
7926 * Return a copy of the minor name for dev_t and spec_type
7929 ddi_lyr_get_minor_name(dev_t dev, int spec_type, char **minor_name)
7945 nm = i_ddi_devtspectype_to_minorname(dip, dev, spec_type);