Searched refs:subType (Results 1 - 12 of 12) sorted by relevance

/haiku/src/add-ons/kernel/busses/mmc/
H A Dsdhci_pci.cpp259 uint16 type, subType; local
272 if (gDeviceManager->get_attr_uint16(parent, B_DEVICE_SUB_TYPE, &subType,
281 if (subType != PCI_sd_host) {
296 subType, type);
/haiku/src/preferences/filetypes/
H A DPreferredAppMenu.cpp55 const char* subType = strchr(signature, '/'); local
56 if (subType == NULL)
60 snprintf(label, sizeof(label), "%s (%s)", item->Label(), subType + 1);
H A DMimeTypeListView.cpp160 const char* subType = strchr(type.Type(), '/'); local
161 fSupertype.SetTo(type.Type(), subType - type.Type());
162 fSubtype.SetTo(subType + 1);
/haiku/src/system/kernel/device_manager/
H A Ddevice_manager.cpp1646 uint16 subType = 0; local
1649 || get_attr_uint16(this, B_DEVICE_SUB_TYPE, &subType, false)
1658 switch (subType) {
1682 switch (subType) {
1703 switch (subType) {
1717 switch (subType) {
1731 switch (subType) {
1741 switch (subType) {
1886 uint16 subType = 0; local
1888 get_attr_uint16(this, B_DEVICE_SUB_TYPE, &subType, fals
2041 uint16 subType = 0; local
[all...]
/haiku/src/tests/system/kernel/device_manager/playground/
H A Ddevice_manager.cpp1268 uint16 subType = 0; local
1271 get_attr_uint16(this, B_DEVICE_SUB_TYPE, &subType, false);
1277 switch (subType) {
1293 switch (subType) {
1312 switch (subType) {
1442 uint16 subType = 0; local
1444 get_attr_uint16(this, B_DEVICE_SUB_TYPE, &subType, false);
1560 uint16 subType = 0; local
1562 && get_attr_uint16(this, B_DEVICE_SUB_TYPE, &subType, false)
1571 && (subType
[all...]
/haiku/src/kits/storage/mime/
H A DDatabase.cpp164 char subType[B_PATH_NAME_LENGTH]; local
165 memcpy(subType, type, length);
166 subType[length++] = '/';
171 if (subEntry.GetName(subType + length) == B_OK) {
172 status = Delete(subType);
/haiku/src/bin/network/ifconfig/
H A Difconfig.cpp93 for (int32 j = 0; const char* subType = get_media_subtype_name(i, j);
95 printf("%s ", subType);
/haiku/src/tests/kits/storage/
H A DMimeTypeTest.cpp1680 std::string subType = superLeaf + "/" + subLeaf; local
1681 if (BMimeType::IsValid(subType.c_str())) {
1682 if (typeSet.find(subType.c_str()) == typeSet.end())
1683 cout << "Fuckup == '" << subType << "'" << endl;
1684 CHK(typeSet.find(subType.c_str()) != typeSet.end());
1685 typeSet.erase(subType.c_str());
1770 std::string subType = superLeaf + "/" + subLeaf; local
1771 if (BMimeType::IsValid(subType.c_str())) {
1772 CHK(subtypeSet.find(subType.c_str()) != subtypeSet.end());
1773 subtypeSet.erase(subType
[all...]
/haiku/src/add-ons/kernel/busses/usb/
H A Duhci.cpp179 uint16 type, subType, api; local
190 if (gDeviceManager->get_attr_uint16(parent, B_DEVICE_SUB_TYPE, &subType,
200 if (type == PCI_serial_bus && subType == PCI_usb && api == PCI_usb_uhci) {
H A Dohci.cpp181 uint16 type, subType, api; local
192 if (gDeviceManager->get_attr_uint16(parent, B_DEVICE_SUB_TYPE, &subType,
202 if (type == PCI_serial_bus && subType == PCI_usb && api == PCI_usb_ohci) {
H A Dehci.cpp180 uint16 type, subType, api; local
191 if (gDeviceManager->get_attr_uint16(parent, B_DEVICE_SUB_TYPE, &subType,
201 if (type == PCI_serial_bus && subType == PCI_usb && api == PCI_usb_ehci) {
H A Dxhci.cpp185 uint16 type, subType, api; local
196 if (gDeviceManager->get_attr_uint16(parent, B_DEVICE_SUB_TYPE, &subType,
206 if (type == PCI_serial_bus && subType == PCI_usb && api == PCI_usb_xhci) {

Completed in 272 milliseconds