Home
last modified time | relevance | path

Searched refs:parent_type (Results 1 – 5 of 5) sorted by relevance

/illumos-gate/usr/src/uts/i86pc/io/gfx_private/
H A Dgfxp_fb.c128 char *parent_type = NULL; in gfxp_check_for_console() local
131 DDI_PROP_DONTPASS, "device_type", &parent_type); in gfxp_check_for_console()
137 if (!STREQ(parent_type, "pci") && in gfxp_check_for_console()
138 !STREQ(parent_type, "pciex")) { in gfxp_check_for_console()
139 ddi_prop_free(parent_type); in gfxp_check_for_console()
143 ddi_prop_free(parent_type); in gfxp_check_for_console()
144 parent_type = NULL; in gfxp_check_for_console()
195 char *parent_type = NULL; in gfxp_fb_attach() local
221 DDI_PROP_DONTPASS, "device_type", &parent_type); in gfxp_fb_attach()
227 if (STREQ(parent_type, "pci") || STREQ(parent_type, "pciex")) { in gfxp_fb_attach()
[all …]
H A Dgfxp_vgatext.c136 char *parent_type = NULL; in gfxp_vga_attach() local
153 DDI_PROP_DONTPASS, "device_type", &parent_type); in gfxp_vga_attach()
160 if (STREQ(parent_type, "isa") || STREQ(parent_type, "eisa")) { in gfxp_vga_attach()
178 } else if (STREQ(parent_type, "pci") || STREQ(parent_type, "pciex")) { in gfxp_vga_attach()
201 parent_type); in gfxp_vga_attach()
205 ddi_prop_free(parent_type); in gfxp_vga_attach()
206 parent_type = NULL; in gfxp_vga_attach()
264 if (parent_type != NULL) in gfxp_vga_attach()
265 ddi_prop_free(parent_type); in gfxp_vga_attach()
/illumos-gate/usr/src/uts/i86pc/io/
H A Dconsplat.c265 char *parent_type; in find_fb_dev() local
328 "device_type", &parent_type) != DDI_SUCCESS) in find_fb_dev()
331 if ((strcmp(parent_type, "isa") == 0) || in find_fb_dev()
332 (strcmp(parent_type, "eisa") == 0)) { in find_fb_dev()
334 ddi_prop_free(parent_type); in find_fb_dev()
338 if ((strcmp(parent_type, "pci") == 0) || in find_fb_dev()
339 (strcmp(parent_type, "pciex") == 0)) { in find_fb_dev()
343 ddi_prop_free(parent_type); in find_fb_dev()
361 ddi_prop_free(parent_type); in find_fb_dev()
/illumos-gate/usr/src/cmd/isns/isnsd/xml/
H A Ddata.c1011 uint32_t puid, parent_type; in xml_add_obj() local
1029 parent_type = TYPE_OF_PARENT[obj->type]; in xml_add_obj()
1030 if (parent_type > 0) { in xml_add_obj()
1032 ec = locate_xml_node(doc, parent_type, puid, in xml_add_obj()
1319 uint32_t puid, parent_type; in xml_delete_assoc() local
1334 parent_type = TYPE_OF_PARENT[assoc->type]; in xml_delete_assoc()
1335 ASSERT(parent_type != 0); in xml_delete_assoc()
1346 ec = locate_xml_node(doc, parent_type, puid, in xml_delete_assoc()
/illumos-gate/usr/src/cmd/stat/common/
H A Dacquire_iodevs.c100 enum iodev_type parent_type = parent_iodev_type(iodev->is_type); in find_parent() local
104 if (parent_type == 0 || parent_type == IODEV_UNKNOWN) in find_parent()
111 if (parent_type == IODEV_CONTROLLER) { in find_parent()