Lines Matching refs:OSDictionary

45 OSDefineMetaClassAndStructorsWithZone(OSDictionary, OSCollection,
47 OSMetaClassDefineReservedUnused(OSDictionary, 0);
48 OSMetaClassDefineReservedUnused(OSDictionary, 1);
49 OSMetaClassDefineReservedUnused(OSDictionary, 2);
50 OSMetaClassDefineReservedUnused(OSDictionary, 3);
51 OSMetaClassDefineReservedUnused(OSDictionary, 4);
52 OSMetaClassDefineReservedUnused(OSDictionary, 5);
53 OSMetaClassDefineReservedUnused(OSDictionary, 6);
54 OSMetaClassDefineReservedUnused(OSDictionary, 7);
64 OSDictionary::dictEntry::compare(const void *_e1, const void *_e2) in compare()
66 const OSDictionary::dictEntry *e1 = (const OSDictionary::dictEntry *)_e1; in compare()
67 const OSDictionary::dictEntry *e2 = (const OSDictionary::dictEntry *)_e2; in compare()
77 OSDictionary::sortBySymbol(void) in sortBySymbol()
79 qsort(dictionary, count, sizeof(OSDictionary::dictEntry), in sortBySymbol()
80 &OSDictionary::dictEntry::compare); in sortBySymbol()
84 OSDictionary::initWithCapacity(unsigned int inCapacity) in initWithCapacity()
111 OSDictionary::initWithObjects(const OSObject *objects[], in initWithObjects()
146 OSDictionary::initWithObjects(const OSObject *objects[], in initWithObjects()
186 OSDictionary::initWithDictionary(const OSDictionary *dict, in initWithDictionary()
222 OSSharedPtr<OSDictionary>
223 OSDictionary::withCapacity(unsigned int capacity) in withCapacity()
225 OSSharedPtr<OSDictionary> me = OSMakeShared<OSDictionary>(); in withCapacity()
234 OSSharedPtr<OSDictionary>
235 OSDictionary::withObjects(const OSObject *objects[], in withObjects()
240 OSSharedPtr<OSDictionary> me = OSMakeShared<OSDictionary>(); in withObjects()
249 OSSharedPtr<OSDictionary>
250 OSDictionary::withObjects(const OSObject *objects[], in withObjects()
255 OSSharedPtr<OSDictionary> me = OSMakeShared<OSDictionary>(); in withObjects()
264 OSSharedPtr<OSDictionary>
265 OSDictionary::withDictionary(const OSDictionary *dict, in withDictionary()
268 OSSharedPtr<OSDictionary> me = OSMakeShared<OSDictionary>(); in withDictionary()
278 OSDictionary::free() in free()
291 OSDictionary::getCount() const in getCount()
296 OSDictionary::getCapacity() const in getCapacity()
302 OSDictionary::getCapacityIncrement() const in getCapacityIncrement()
308 OSDictionary::setCapacityIncrement(unsigned int increment) in setCapacityIncrement()
316 OSDictionary::ensureCapacity(unsigned int newCapacity) in ensureCapacity()
346 OSDictionary::flushCollection() in flushCollection()
358 OSDictionary::
412 OSDictionary::
419 OSDictionary::setObject(OSSharedPtr<const OSSymbol> const& aKey, OSSharedPtr<const OSMetaClassBase>… in setObject()
425 OSDictionary::setObject(const OSString* aKey, OSSharedPtr<const OSMetaClassBase> const& anObject) in setObject()
431 OSDictionary::setObject(const char* aKey, OSSharedPtr<const OSMetaClassBase> const& anObject) in setObject()
437 OSDictionary::removeObject(const OSSymbol *aKey) in removeObject()
476 OSDictionary::merge(const OSDictionary *srcDict) in merge()
481 if (!OSDynamicCast(OSDictionary, srcDict)) { in merge()
485 iter = OSCollectionIterator::withCollection(const_cast<OSDictionary *>(srcDict)); in merge()
503 OSDictionary::getObject(const OSSymbol *aKey) const in getObject()
571 OSDictionary::setObject(const OSString *aKey, const OSMetaClassBase *anObject) in setObject()
574 OSDictionary::setObject(const char *aKey, const OSMetaClassBase *anObject) in setObject()
577 OSObject *OSDictionary::getObject(const OSString * aKey) const in setObject()
579 OSObject *OSDictionary::getObject(const char *aKey) const in setObject()
583 OSDictionary::removeObject(const OSString *aKey) in setObject()
586 OSDictionary::removeObject(const char *aKey) in setObject()
590 OSDictionary::isEqualTo(const OSDictionary *srcDict, const OSCollection *keys) const in setObject()
632 OSDictionary::isEqualTo(const OSDictionary *srcDict) const in isEqualTo()
660 OSDictionary::isEqualTo(const OSMetaClassBase *anObject) const in isEqualTo()
662 OSDictionary *dict; in isEqualTo()
664 dict = OSDynamicCast(OSDictionary, anObject); in isEqualTo()
673 OSDictionary::iteratorSize() const in iteratorSize()
679 OSDictionary::initIterator(void *inIterator) const in initIterator()
688 OSDictionary::getNextObjectForIterator(void *inIterator, OSObject **ret) const in getNextObjectForIterator()
703 OSDictionary::serialize(OSSerialize *s) const in serialize()
757 OSDictionary::setOptions(unsigned options, unsigned mask, void *) in setOptions()
778 OSDictionary::copyCollection(OSDictionary *cycleDict) in copyCollection()
780 OSSharedPtr<OSDictionary> ourCycleDict; in copyCollection()
782 OSSharedPtr<OSDictionary> newDict; in copyCollection()
785 ourCycleDict = OSDictionary::withCapacity(16); in copyCollection()
799 newDict = OSDictionary::withDictionary(this); in copyCollection()
828 OSDictionary::copyKeys(void) in copyKeys()
846 OSDictionary::iterateObjects(void * refcon, bool (*callback)(void * refcon, const OSSymbol * key, O… in iterateObjects()
874 OSDictionary::iterateObjects(bool (^block)(const OSSymbol * key, OSObject * object))