Searched refs:newSet (Results 1 - 3 of 3) sorted by relevance

/darwin-on-arm/xnu/libkern/c++/
H A DOSSet.cpp361 OSSet *newSet = 0; local
375 newSet = OSSet::withCapacity(members->capacity);
376 if (!newSet)
380 cycleDict->setObject((const OSSymbol *) this, newSet);
382 OSArray *newMembers = newSet->members;
401 ret = newSet;
402 newSet = 0;
407 if (newSet)
408 newSet->release();
H A DOSOrderedSet.cpp373 OSOrderedSet *newSet = 0; local
388 newSet = OSOrderedSet::withCapacity(capacity, ordering, orderingRef);
389 if (!newSet)
393 cycleDict->setObject((const OSSymbol *) this, newSet);
395 newSet->capacityIncrement = capacityIncrement;
410 newSet->setLastObject(obj);
413 ret = newSet;
414 newSet = 0;
419 if (newSet)
420 newSet
[all...]
/darwin-on-arm/xnu/iokit/Kernel/
H A DIOUserClient.cpp459 OSArray * newSet; member in class:IOServiceUserNotification
586 newSet = OSArray::withCapacity( 1 );
587 if( !newSet)
624 _newSet = newSet;
658 count = newSet->getCount();
661 newSet->setObject( newService );
699 count = newSet->getCount();
701 result = newSet->getObject( count - 1 );
703 newSet->removeObject( count - 1);

Completed in 35 milliseconds