Lines Matching refs:OSArray

44 OSDefineMetaClassAndStructorsWithZone(OSArray, OSCollection,
46 OSMetaClassDefineReservedUnused(OSArray, 0);
47 OSMetaClassDefineReservedUnused(OSArray, 1);
48 OSMetaClassDefineReservedUnused(OSArray, 2);
49 OSMetaClassDefineReservedUnused(OSArray, 3);
50 OSMetaClassDefineReservedUnused(OSArray, 4);
51 OSMetaClassDefineReservedUnused(OSArray, 5);
52 OSMetaClassDefineReservedUnused(OSArray, 6);
53 OSMetaClassDefineReservedUnused(OSArray, 7);
56 OSArray::initWithCapacity(unsigned int inCapacity) in initWithCapacity()
81 OSArray::initWithObjects(const OSObject *objects[], in initWithObjects()
113 OSArray::initWithArray(const OSArray *anArray, in initWithArray()
124 OSSharedPtr<OSArray>
125 OSArray::withCapacity(unsigned int capacity) in withCapacity()
127 OSSharedPtr<OSArray> me = OSMakeShared<OSArray>(); in withCapacity()
136 OSSharedPtr<OSArray>
137 OSArray::withObjects(const OSObject *objects[], in withObjects()
141 OSSharedPtr<OSArray> me = OSMakeShared<OSArray>(); in withObjects()
150 OSSharedPtr<OSArray>
151 OSArray::withArray(const OSArray *array, in withArray()
154 OSSharedPtr<OSArray> me = OSMakeShared<OSArray>(); in withArray()
164 OSArray::free() in free()
182 OSArray::getCount() const in getCount()
187 OSArray::getCapacity() const in getCapacity()
192 OSArray::getCapacityIncrement() const in getCapacityIncrement()
197 OSArray::setCapacityIncrement(unsigned int increment) in setCapacityIncrement()
205 OSArray::ensureCapacity(unsigned int newCapacity) in ensureCapacity()
235 OSArray::flushCollection() in flushCollection()
247 OSArray::setObject(const OSMetaClassBase *anObject) in setObject()
253 OSArray::setObject(OSSharedPtr<const OSMetaClassBase> const& anObject) in setObject()
259 OSArray::setObject(unsigned int index, const OSMetaClassBase *anObject) in setObject()
286 OSArray::setObject(unsigned int index, OSSharedPtr<const OSMetaClassBase> const& anObject) in setObject()
292 OSArray::merge(const OSArray * otherArray) in merge()
321 OSArray::
334 OSArray::replaceObject(unsigned int index, OSSharedPtr<const OSMetaClassBase> const& anObject) in replaceObject()
340 OSArray::removeObject(unsigned int index) in removeObject()
359 OSArray::isEqualTo(const OSArray *anArray) const in isEqualTo()
381 OSArray::isEqualTo(const OSMetaClassBase *anObject) const in isEqualTo()
383 OSArray *otherArray; in isEqualTo()
385 otherArray = OSDynamicCast(OSArray, anObject); in isEqualTo()
394 OSArray::getObject(unsigned int index) const in getObject()
404 OSArray::getLastObject() const in getLastObject()
414 OSArray::getNextIndexOfObject(const OSMetaClassBase * anObject, in getNextIndexOfObject()
427 OSArray::iteratorSize() const in iteratorSize()
433 OSArray::initIterator(void *inIterator) const in initIterator()
442 OSArray::getNextObjectForIterator(void *inIterator, OSObject **ret) const in getNextObjectForIterator()
457 OSArray::serialize(OSSerialize *s) const in serialize()
477 OSArray::setOptions(unsigned options, unsigned mask, void *) in setOptions()
494 OSArray::copyCollection(OSDictionary *cycleDict) in copyCollection()
498 OSSharedPtr<OSArray> newArray; in copyCollection()
515 newArray = OSArray::withArray(this); in copyCollection()