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

/xnu-2782.1.97/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.cpp380 OSOrderedSet *newSet = 0; local
395 newSet = OSOrderedSet::withCapacity(capacity, ordering, orderingRef);
396 if (!newSet)
400 cycleDict->setObject((const OSSymbol *) this, newSet);
402 newSet->capacityIncrement = capacityIncrement;
417 newSet->setLastObject(obj);
420 ret = newSet;
421 newSet = 0;
426 if (newSet)
427 newSet
[all...]
H A DOSSerializeBinary.cpp276 OSSet * newSet; local
320 o = 0; newDict = 0; newArray = 0; newSet = 0;
333 o = newSet = OSSet::withCapacity(len);
439 set = newSet;
/xnu-2782.1.97/iokit/Kernel/
H A DIOUserClient.cpp460 OSArray * newSet; member in class:IOServiceUserNotification
587 newSet = OSArray::withCapacity( 1 );
588 if( !newSet)
625 _newSet = newSet;
659 count = newSet->getCount();
662 newSet->setObject( newService );
702 count = newSet->getCount();
704 result = newSet->getObject( count - 1 );
706 newSet->removeObject( count - 1);

Completed in 33 milliseconds