Lines Matching refs:OSDictionary

869 	OSSharedPtr<OSDictionary> dict = IOService::resourceMatching("hello");  in OSCollectionTest()
894 dict = OSDictionary::withCapacity(4); in OSCollectionTest()
904 dict = OSDynamicPtrCast<OSDictionary>(o); in OSCollectionTest()
1405 OSSharedPtr<OSDictionary> matching; in IOServiceTest()
1452 OSSharedPtr<OSDictionary> const dict = OSMakeShared<OSDictionary>(); in OSStaticPtrCastTests()
1457 OSSharedPtr<OSDictionary> const dict = nullptr; in OSStaticPtrCastTests()
1463 OSSharedPtr<OSDictionary> dict = OSMakeShared<OSDictionary>(); in OSStaticPtrCastTests()
1464 __assert_only OSDictionary* oldDict = dict.get(); in OSStaticPtrCastTests()
1470 OSSharedPtr<OSDictionary> dict = nullptr; in OSStaticPtrCastTests()
1482 OSSharedPtr<OSDictionary const> const dict = OSMakeShared<OSDictionary>(); in OSConstPtrCastTests()
1483 OSSharedPtr<OSDictionary> dict2 = OSConstPtrCast<OSDictionary>(dict); in OSConstPtrCastTests()
1487 OSSharedPtr<OSDictionary const> const dict = OSMakeShared<OSDictionary>(); in OSConstPtrCastTests()
1488 OSSharedPtr<OSDictionary const> dict2 = OSConstPtrCast<OSDictionary const>(dict); in OSConstPtrCastTests()
1492 OSSharedPtr<OSDictionary const> const dict = nullptr; in OSConstPtrCastTests()
1493 OSSharedPtr<OSDictionary> dict2 = OSConstPtrCast<OSDictionary>(dict); in OSConstPtrCastTests()
1497 OSSharedPtr<OSDictionary const> const dict = nullptr; in OSConstPtrCastTests()
1498 OSSharedPtr<OSDictionary const> dict2 = OSConstPtrCast<OSDictionary const>(dict); in OSConstPtrCastTests()
1504 OSSharedPtr<OSDictionary const> dict = OSMakeShared<OSDictionary>(); in OSConstPtrCastTests()
1505 __assert_only OSDictionary const* oldDict = dict.get(); in OSConstPtrCastTests()
1506 __assert_only OSSharedPtr<OSDictionary> dict2 = OSConstPtrCast<OSDictionary>(os::move(dict)); in OSConstPtrCastTests()
1511 OSSharedPtr<OSDictionary const> dict = nullptr; in OSConstPtrCastTests()
1512 OSSharedPtr<OSDictionary> dict2 = OSConstPtrCast<OSDictionary>(os::move(dict)); in OSConstPtrCastTests()
1521 OSSharedPtr<OSDictionary> const dict = OSMakeShared<OSDictionary>(); in OSDynamicPtrCastTests()
1544 assert(collection.get() == OSDynamicCast(OSDictionary, dict.get())); in OSDynamicPtrCastTests()
1545 OSSharedPtr<OSDictionary> newDict = OSDynamicPtrCast<OSDictionary>(os::move(collection)); in OSDynamicPtrCastTests()
1579 OSSharedPtr<OSDictionary> dict = OSDictionary::withCapacity(0); in IOUserNotificationTestThread()
1654 OSSharedPtr<OSDictionary> table; in IOServiceMatchingSharedPtrTests()
1655 OSSharedPtr<OSDictionary> result = IOService::serviceMatching("name", table); in IOServiceMatchingSharedPtrTests()
1661 OSSharedPtr<OSDictionary> result2 = IOService::serviceMatching("name", table); in IOServiceMatchingSharedPtrTests()
1668 OSSharedPtr<OSDictionary> table; in IOServiceMatchingSharedPtrTests()
1669 OSSharedPtr<OSDictionary> result = IOService::serviceMatching(name.get(), table); in IOServiceMatchingSharedPtrTests()
1675 OSSharedPtr<OSDictionary> result2 = IOService::serviceMatching(name.get(), table); in IOServiceMatchingSharedPtrTests()
1682 OSSharedPtr<OSDictionary> table; in IOServiceMatchingSharedPtrTests()
1683 OSSharedPtr<OSDictionary> result = IOService::nameMatching("name", table); in IOServiceMatchingSharedPtrTests()
1689 OSSharedPtr<OSDictionary> result2 = IOService::nameMatching("name", table); in IOServiceMatchingSharedPtrTests()
1696 OSSharedPtr<OSDictionary> table; in IOServiceMatchingSharedPtrTests()
1697 OSSharedPtr<OSDictionary> result = IOService::nameMatching(name.get(), table); in IOServiceMatchingSharedPtrTests()
1703 OSSharedPtr<OSDictionary> result2 = IOService::nameMatching(name.get(), table); in IOServiceMatchingSharedPtrTests()
1710 OSSharedPtr<OSDictionary> table; in IOServiceMatchingSharedPtrTests()
1711 OSSharedPtr<OSDictionary> result = IOService::resourceMatching("name", table); in IOServiceMatchingSharedPtrTests()
1717 OSSharedPtr<OSDictionary> result2 = IOService::resourceMatching("name", table); in IOServiceMatchingSharedPtrTests()
1724 OSSharedPtr<OSDictionary> table; in IOServiceMatchingSharedPtrTests()
1725 OSSharedPtr<OSDictionary> result = IOService::resourceMatching(name.get(), table); in IOServiceMatchingSharedPtrTests()
1731 OSSharedPtr<OSDictionary> result2 = IOService::resourceMatching(name.get(), table); in IOServiceMatchingSharedPtrTests()
1738 OSSharedPtr<OSDictionary> table; in IOServiceMatchingSharedPtrTests()
1739 OSSharedPtr<OSDictionary> result = IOService::propertyMatching(name.get(), value.get(), table); in IOServiceMatchingSharedPtrTests()
1745 OSSharedPtr<OSDictionary> result2 = IOService::propertyMatching(name.get(), value.get(), table); in IOServiceMatchingSharedPtrTests()
1752 OSSharedPtr<OSDictionary> table; in IOServiceMatchingSharedPtrTests()
1753 OSSharedPtr<OSDictionary> result = IOService::registryEntryIDMatching(12, table); in IOServiceMatchingSharedPtrTests()
1759 OSSharedPtr<OSDictionary> result2 = IOService::registryEntryIDMatching(12, table); in IOServiceMatchingSharedPtrTests()
1785 OSSharedPtr<OSDictionary> value; in IOServiceStateNotificationTests()
1788 value = OSDictionary::withCapacity(4); in IOServiceStateNotificationTests()
1804 OSDictionary * dict; in IOServiceStateNotificationTests()
1821 OSDictionary * dict; in IOServiceStateNotificationTests()
2025 OSSharedPtr<OSDictionary> matchingDict = IOService::nameMatching("XHC1"); in sysctl_iokittest()